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

describe "Time#hash" do
  it "returns an Integer" do
    Time.at(100).hash.should be_an_instance_of(Integer)
  end

  it "is stable" do
    Time.at(1234).hash.should == Time.at(1234).hash
  end
end