зеркало из https://github.com/github/ruby.git
* test/ruby/test_enum.rb (test_count): marked as an implementation
specific test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25575 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
1932c59097
Коммит
db196eef24
|
@ -36,14 +36,16 @@ class TestEnumerable < Test::Unit::TestCase
|
|||
assert_equal(2, @obj.count(1) {|x| x % 2 == 1 })
|
||||
assert_raise(ArgumentError) { @obj.count(0, 1) }
|
||||
|
||||
en = Class.new {
|
||||
include Enumerable
|
||||
alias :size :count
|
||||
def each
|
||||
yield 1
|
||||
end
|
||||
}
|
||||
assert_equal(1, en.new.count, '[ruby-core:24794]')
|
||||
if RUBY_ENGINE == "ruby"
|
||||
en = Class.new {
|
||||
include Enumerable
|
||||
alias :size :count
|
||||
def each
|
||||
yield 1
|
||||
end
|
||||
}
|
||||
assert_equal(1, en.new.count, '[ruby-core:24794]')
|
||||
end
|
||||
end
|
||||
|
||||
def test_find
|
||||
|
|
Загрузка…
Ссылка в новой задаче