Files
cpp-thirdparty/winx64/bin/swigwin-4.0.0/Examples/test-suite/ruby/overload_extend2_runme.rb
2019-08-04 21:38:19 -05:00

19 lines
264 B
Ruby

#!/usr/bin/env ruby
#
# Put description here
#
#
#
#
#
require 'swig_assert'
require 'overload_extend2'
f = Overload_extend2::Foo.new
raise RuntimeError if f.test(3) != 1
raise RuntimeError if f.test("hello") != 2
raise RuntimeError if f.test(3.5,2.5) != 3