From 8480bcc8d5c72b61055cfa98e80f37fd62ae7ad4 Mon Sep 17 00:00:00 2001 From: knu Date: Sun, 18 May 2008 15:02:36 +0000 Subject: Merge -r16241:16456 from ruby_1_8. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@16458 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_array.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/ruby/test_array.rb') diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb index 3cb1ec174e..6a816a2c85 100644 --- a/test/ruby/test_array.rb +++ b/test/ruby/test_array.rb @@ -528,6 +528,14 @@ class TestArray < Test::Unit::TestCase assert_equal([1, 2, 3, 1, 2, 3], a) end + def test_count + a = @cls[1, 2, 3, 1, 2] + assert_equal(2, a.count(1)) + assert_equal(3, a.count {|x| x % 2 == 1 }) + assert_equal(2, a.count(1) {|x| x % 2 == 1 }) + assert_raise(ArgumentError) { a.count(0, 1) } + end + def test_delete a = @cls[*('cab'..'cat').to_a] assert_equal('cap', a.delete('cap')) -- cgit v1.2.3