aboutsummaryrefslogtreecommitdiffstats
path: root/spec/rubyspec/core/float/hash_spec.rb
blob: c638e99347d126bb6218c9d5327631e515a86a54 (plain)
1
2
3
4
5
6
7
8
9
10
11
require File.expand_path('../../../spec_helper', __FILE__)

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