From 5b5de3984e31b75643ad3ffc97c149436498c33d Mon Sep 17 00:00:00 2001 From: marcandre Date: Wed, 23 Oct 2013 15:13:57 +0000 Subject: * lib/ostruct.rb (Struct#each_pair): Return an enumerator with size Patch by Kenichi Kamiya. [Fixes GH-383] * test/ostruct/test_ostruct.rb: Added tests for above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43404 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ostruct/test_ostruct.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'test/ostruct') diff --git a/test/ostruct/test_ostruct.rb b/test/ostruct/test_ostruct.rb index 3c1d574e32..a28abe5211 100644 --- a/test/ostruct/test_ostruct.rb +++ b/test/ostruct/test_ostruct.rb @@ -113,6 +113,7 @@ class TC_OpenStruct < Test::Unit::TestCase os = OpenStruct.new(h) assert_equal '#:each_pair>', os.each_pair.inspect assert_equal [[:name, "John Smith"], [:age, 70], [:pension, 300]], os.each_pair.to_a + assert_equal 3, os.each_pair.size end def test_eql_and_hash -- cgit v1.2.3