Added some runtime tests for ruby.

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9693 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Gonzalo Garramuno 2007-04-28 15:52:50 +00:00
commit 5be075f16f
7 changed files with 255 additions and 0 deletions

View file

@ -0,0 +1,35 @@
#!/usr/bin/env ruby
#
# Put script description here.
#
# Author:: gga
# Copyright:: 2007
# License:: Ruby
#
require 'swig_assert'
require 'anonymous_bitfield'
include Anonymous_bitfield
foo = Foo.new
{'x' => 4,
'y' => 3,
'f' => 1,
'z' => 8,
'seq' => 3 }.each do |m, v|
foo.send("#{m}=", v)
val = foo.send(m)
swig_assert(val == v, " for foo.#{m} == #{v}, was #{val}")
end
{'x' => (1 << 4),
'y' => (1 << 4),
'f' => (1 << 1),
'z' => (1 << 16),
'seq' => (1 << (4*8-6)) }.each do |m, v|
foo.send("#{m}=", v)
val = foo.send(m)
swig_assert(val != v, " for foo.#{m} != #{v}, was #{val}")
end