etc. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9785 626c5289-ae23-0410-ae9c-e8d60b6d4f22
30 lines
310 B
Ruby
Executable file
30 lines
310 B
Ruby
Executable file
#!/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
|