mirror of
https://github.com/zhigang1992/RubyMotion.git
synced 2026-04-03 22:49:56 +08:00
13 lines
316 B
Ruby
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
|