Files
RubyMotion/test/TestTime/spec/rubyspec/hash_spec.rb

13 lines
316 B
Ruby

# require File.expand_path('../../../spec_helper', __FILE__)
# require File.expand_path('../fixtures/methods', __FILE__)
describe "Time#hash" do
it "returns a Fixnum" do
Time.at(100).hash.kind_of?(Fixnum).should == true
end
it "is stable" do
Time.at(1234).hash.should == Time.at(1234).hash
end
end