test/test_spqr_integerprop.rb in spqr-0.0.4 vs test/test_spqr_integerprop.rb in spqr-0.1.0
- old
+ new
@@ -14,10 +14,13 @@
objs = $console.objects(:class=>"QmfIntegerProp", :agent=>@ag)
objs.size.times do |x|
expected = objs[(x + 1) % QmfIntegerProp::SIZE]
- actual = $console.object(:object_id=>objs[x].next.result)
+ o = objs[x]
+ next_o = o.next.result
+ puts ("next_o: #{next_o}")
+ actual = $console.object(:object_id=>next_o)
assert_equal expected.int_id, actual.int_id
end
end
def test_property_identities