2003-09-24 20:03:11 -04:00
|
|
|
require 'test/unit'
|
|
|
|
require 'ostruct'
|
|
|
|
|
|
|
|
class TC_OpenStruct < Test::Unit::TestCase
|
|
|
|
def test_equality
|
|
|
|
o1 = OpenStruct.new
|
|
|
|
o2 = OpenStruct.new
|
|
|
|
assert_equal(o1, o2)
|
|
|
|
|
|
|
|
o1.a = 'a'
|
|
|
|
assert_not_equal(o1, o2)
|
|
|
|
|
|
|
|
o2.a = 'a'
|
|
|
|
assert_equal(o1, o2)
|
|
|
|
|
|
|
|
o1.a = 'b'
|
|
|
|
assert_not_equal(o1, o2)
|
|
|
|
|
|
|
|
o2 = Object.new
|
|
|
|
o2.instance_eval{@table = {:a => 'b'}}
|
|
|
|
assert_not_equal(o1, o2)
|
|
|
|
end
|
2009-01-13 07:52:23 -05:00
|
|
|
|
|
|
|
def test_inspect
|
|
|
|
foo = OpenStruct.new
|
|
|
|
assert_equal("#<OpenStruct>", foo.inspect)
|
|
|
|
foo.bar = 1
|
|
|
|
foo.baz = 2
|
|
|
|
assert_equal("#<OpenStruct bar=1, baz=2>", foo.inspect)
|
|
|
|
|
|
|
|
foo = OpenStruct.new
|
|
|
|
foo.bar = OpenStruct.new
|
|
|
|
assert_equal('#<OpenStruct bar=#<OpenStruct>>', foo.inspect)
|
|
|
|
foo.bar.foo = foo
|
|
|
|
assert_equal('#<OpenStruct bar=#<OpenStruct foo=#<OpenStruct ...>>>', foo.inspect)
|
|
|
|
end
|
2003-09-24 20:03:11 -04:00
|
|
|
end
|