add core/fixnum/hash spec

This commit is contained in:
Laurent Sansonetti
2014-04-20 18:24:01 +02:00
parent 7a93cde769
commit 1da2ee416d

View File

@@ -0,0 +1,9 @@
describe "Fixnum#hash" do
it "is provided" do
1.respond_to?(:hash).should == true
end
it "is stable" do
1.hash.should == 1.hash
end
end