summaryrefslogtreecommitdiff
path: root/spec/ruby/core/array/shared/length.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/array/shared/length.rb')
-rw-r--r--spec/ruby/core/array/shared/length.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/spec/ruby/core/array/shared/length.rb b/spec/ruby/core/array/shared/length.rb
deleted file mode 100644
index f84966d0ba..0000000000
--- a/spec/ruby/core/array/shared/length.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-describe :array_length, shared: true do
- it "returns the number of elements" do
- [].send(@method).should == 0
- [1, 2, 3].send(@method).should == 3
- end
-
- it "properly handles recursive arrays" do
- ArraySpecs.empty_recursive_array.send(@method).should == 1
- ArraySpecs.recursive_array.send(@method).should == 8
- end
-end