summaryrefslogtreecommitdiff
path: root/spec/ruby/library/date/today_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/library/date/today_spec.rb')
-rw-r--r--spec/ruby/library/date/today_spec.rb10
1 files changed, 9 insertions, 1 deletions
diff --git a/spec/ruby/library/date/today_spec.rb b/spec/ruby/library/date/today_spec.rb
index 09e8ed6006..d487be089f 100644
--- a/spec/ruby/library/date/today_spec.rb
+++ b/spec/ruby/library/date/today_spec.rb
@@ -2,5 +2,13 @@ require File.expand_path('../../../spec_helper', __FILE__)
require 'date'
describe "Date.today" do
- it "needs to be reviewed for spec completeness"
+ it "returns a Date object" do
+ Date.today.should be_kind_of Date
+ end
+
+ it "sets Date object to the current date" do
+ today = Date.today
+ now = Time.now
+ (now - today.to_time).should be_close(0.0, 24 * 60 * 60)
+ end
end