* array.c (take_items), enum.c (enum_zip): tries to convert to

array first.  [ruby-core:21442]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21678 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-01-19 21:47:48 +00:00
parent 13313688b2
commit cab67c3197
5 changed files with 24 additions and 3 deletions

View file

@ -1502,6 +1502,11 @@ class TestArray < Test::Unit::TestCase
a = []
[1, 2, 3].zip([:a, :b], ["a", "b", "c", "d"]) {|x| a << x }
assert_equal([[1, :a, "a"], [2, :b, "b"], [3, nil, "c"]], a)
ary = Object.new
def ary.to_a; [1, 2]; end
def ary.to_ary; [3, 4]; end
assert_equal([[5, 3], [6, 4]], [5, 6].zip(ary))
end
def test_transpose