summaryrefslogtreecommitdiff
path: root/spec/ruby/core/hash/shared/length.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/hash/shared/length.rb')
-rw-r--r--spec/ruby/core/hash/shared/length.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/spec/ruby/core/hash/shared/length.rb b/spec/ruby/core/hash/shared/length.rb
deleted file mode 100644
index 24f5563759..0000000000
--- a/spec/ruby/core/hash/shared/length.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-describe :hash_length, shared: true do
- it "returns the number of entries" do
- { a: 1, b: 'c' }.send(@method).should == 2
- h = { a: 1, b: 2 }
- h[:a] = 2
- h.send(@method).should == 2
- { a: 1, b: 1, c: 1 }.send(@method).should == 3
- {}.send(@method).should == 0
- Hash.new(5).send(@method).should == 0
- Hash.new { 5 }.send(@method).should == 0
- end
-end