summaryrefslogtreecommitdiff
path: root/spec/ruby/core/bignum/hash_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/bignum/hash_spec.rb')
-rw-r--r--spec/ruby/core/bignum/hash_spec.rb12
1 files changed, 0 insertions, 12 deletions
diff --git a/spec/ruby/core/bignum/hash_spec.rb b/spec/ruby/core/bignum/hash_spec.rb
deleted file mode 100644
index bdc85c3fdc..0000000000
--- a/spec/ruby/core/bignum/hash_spec.rb
+++ /dev/null
@@ -1,12 +0,0 @@
-require File.expand_path('../../../spec_helper', __FILE__)
-
-describe "Bignum#hash" do
- it "is provided" do
- bignum_value.respond_to?(:hash).should == true
- end
-
- it "is stable" do
- bignum_value.hash.should == bignum_value.hash
- bignum_value.hash.should_not == bignum_value(1).hash
- end
-end