summaryrefslogtreecommitdiff
path: root/spec/ruby/shared/rational/hash.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/shared/rational/hash.rb')
-rw-r--r--spec/ruby/shared/rational/hash.rb9
1 files changed, 0 insertions, 9 deletions
diff --git a/spec/ruby/shared/rational/hash.rb b/spec/ruby/shared/rational/hash.rb
deleted file mode 100644
index 50f21cec20..0000000000
--- a/spec/ruby/shared/rational/hash.rb
+++ /dev/null
@@ -1,9 +0,0 @@
-require_relative '../../spec_helper'
-
-describe :rational_hash, shared: true do
- # BUG: Rational(2, 3).hash == Rational(3, 2).hash
- it "is static" do
- Rational(2, 3).hash.should == Rational(2, 3).hash
- Rational(2, 4).hash.should_not == Rational(2, 3).hash
- end
-end