summaryrefslogtreecommitdiff
path: root/spec/ruby/core/float/hash_spec.rb
blob: 5f77e3b4a11dcc76387c0a421ecb96aa2b9fb1da (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../spec_helper'

describe "Float#hash" do
  it "is provided" do
    0.0.respond_to?(:hash).should == true
  end

  it "is stable" do
    1.0.hash.should == 1.0.hash
  end
end