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

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

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