/tags/rel-1-3-15/SWIG/Examples/test-suite/ruby/inherit_missing_runme.rb
# · Ruby · 20 lines · 16 code · 4 blank · 0 comment · 6 complexity · 7037aacfa7eead65e3683173e9d742fb MD5 · raw file
- require 'inherit_missing'
- a = Inherit_missing.new_Foo()
- b = Inherit_missing::Bar.new
- c = Inherit_missing::Spam.new
- x = Inherit_missing.do_blah(a)
- if x != "Foo::blah"
- puts "Whoa! Bad return #{x}"
- end
- x = Inherit_missing.do_blah(b)
- if x != "Bar::blah"
- puts "Whoa! Bad return #{x}"
- end
- x = Inherit_missing.do_blah(c)
- if x != "Spam::blah"
- puts "Whoa! Bad return #{x}"
- end