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

* test/ruby/test_array.rb (test_combination2): Make the test case for

[ruby-core:29240] more descriptive.
  cf. http://bugs.jruby.org/6518


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34873 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nahi 2012-03-02 08:16:14 +00:00
parent 8d07e0870f
commit effb5248a2
2 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,9 @@
Fri Mar 2 17:13:33 2012 Hiroshi Nakamura <nahi@ruby-lang.org>
* test/ruby/test_array.rb (test_combination2): Make the test case for
[ruby-core:29240] more descriptive.
cf. http://bugs.jruby.org/6518
Fri Mar 2 16:37:11 2012 Nobuyoshi Nakada <nobu@ruby-lang.org>
* file.c (file_expand_path): use wcscasecmp().

View file

@ -2060,9 +2060,7 @@ class TestArray < Test::Unit::TestCase
end
def test_combination2
assert_nothing_raised do
(0..100).to_a.combination(50) { break }
end
assert_equal(:called, (0..100).to_a.combination(50) { break :called }, "[ruby-core:29240] ... must be yielded even if 100C50 > signed integer")
end
def test_product2