- 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
30 lines
310 B
Ruby
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
|