summaryrefslogtreecommitdiff
path: root/test/ruby/test_array.rb
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-28 09:12:28 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-28 09:12:28 +0000
commit8f706b2d44256d9f37631887a40c769d524374db (patch)
tree2dce5a0db0676e66e076dfdc39b5265bc6aa6cd0 /test/ruby/test_array.rb
parente2db8af8a3c3968466a4d6c66db08ab342274b75 (diff)
* array.c (rb_ary_nitems, Init_Array): Axe Array#nitems().
cf. [ruby-dev:34676]-[ruby-dev:34713] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16675 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_array.rb')
-rw-r--r--test/ruby/test_array.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb
index 5618d1545a..035b70ad2a 100644
--- a/test/ruby/test_array.rb
+++ b/test/ruby/test_array.rb
@@ -827,14 +827,6 @@ class TestArray < Test::Unit::TestCase
assert_equal(@cls[], a)
end
- def test_nitems
- assert_equal(0, @cls[].nitems)
- assert_equal(1, @cls[1].nitems)
- assert_equal(1, @cls[1, nil].nitems)
- assert_equal(1, @cls[nil, 1].nitems)
- assert_equal(3, @cls[1, nil, nil, 2, nil, 3, nil].nitems)
- end
-
def test_pack
a = @cls[*%w( cat wombat x yy)]
assert_equal("catwomx yy ", a.pack("A3A3A3A3"))
@@ -1513,10 +1505,6 @@ class TestArray < Test::Unit::TestCase
assert_equal(a.hash, b.hash)
end
- def test_nitems2
- assert_equal(3, [5,6,7,8,9].nitems { |x| x % 2 != 0 })
- end
-
def test_flatten2
a = []
a << a