swig/Examples/test-suite/ruby/li_std_stack_runme.rb
Karl Wette 7cd9063b52 Remove execute permissions from various non-executable files
- source files and Makefiles need never be executable
- scripts are run directly by their interpreters in the
  test suites, so also do not need to be executable
2014-05-02 20:06:11 +02:00

30 lines
310 B
Ruby

#!/usr/bin/env ruby
#
# A simple std::stack test
#
#
#
#
#
require 'swig_assert'
require 'li_std_stack'
include Li_std_stack
swig_assert_each_line(<<'EOF', binding)
a = IntStack.new
a << 1
a << 2
a << 3
a.top == 3
a.pop
a.top == 2
a.pop
a.top == 1
a.pop
a.size == 0
a.empty? == true
# a.top == Qnil
EOF