summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/time/monday_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/rubyspec/core/time/monday_spec.rb')
-rw-r--r--spec/rubyspec/core/time/monday_spec.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/rubyspec/core/time/monday_spec.rb b/spec/rubyspec/core/time/monday_spec.rb
new file mode 100644
index 0000000000..47b09c9a07
--- /dev/null
+++ b/spec/rubyspec/core/time/monday_spec.rb
@@ -0,0 +1,11 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+
+describe "Time#monday?" do
+ it "returns true if time represents Monday" do
+ Time.local(2000, 1, 3).monday?.should == true
+ end
+
+ it "returns false if time doesn't represent Monday" do
+ Time.local(2000, 1, 1).monday?.should == false
+ end
+end