aboutsummaryrefslogtreecommitdiffstats
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, 11 insertions, 0 deletions
diff --git a/spec/ruby/core/array/shared/length.rb b/spec/ruby/core/array/shared/length.rb
new file mode 100644
index 0000000000..f84966d0ba
--- /dev/null
+++ b/spec/ruby/core/array/shared/length.rb
@@ -0,0 +1,11 @@
+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