summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/time/hash_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/time/hash_spec.rb')
-rw-r--r--spec/rubyspec/core/time/hash_spec.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/rubyspec/core/time/hash_spec.rb b/spec/rubyspec/core/time/hash_spec.rb
new file mode 100644
index 0000000000..77014c5dc8
--- /dev/null
+++ b/spec/rubyspec/core/time/hash_spec.rb
@@ -0,0 +1,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