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

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