swig/Examples/test-suite/ruby/li_std_stack_runme.rb
Gonzalo Garramuno 5e27a6828a Added an implementation of std_stack.i with
proper tests.



git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9778 626c5289-ae23-0410-ae9c-e8d60b6d4f22
2007-05-06 05:13:17 +00:00

30 lines
350 B
Ruby
Executable file

#!/usr/bin/env ruby
#
# A simple std::stack test
#
# Author::
# Copyright::
# License:: Ruby
#
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