1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/test_enum.rb (TestEnumerable#each): recursive join now

raises ArgumentError.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24249 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2009-07-22 17:53:56 +00:00
parent 9adaa9e9df
commit 9ce6eb65bb
2 changed files with 7 additions and 2 deletions

View file

@ -299,8 +299,8 @@ class TestEnumerable < Test::Unit::TestCase
yield self
end
end
assert_equal("[...]", e.join(""), '[ruby-core:24150]')
assert_equal("[...]", [e].join(""), '[ruby-core:24150]')
assert_raise(ArgumentError){e.join("")}
assert_raise(ArgumentError){[e].join("")}
e = Class.new {
include Enumerable
def initialize(*args)