summaryrefslogtreecommitdiff
path: root/spec/ruby/core/time/sunday_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/time/sunday_spec.rb')
-rw-r--r--spec/ruby/core/time/sunday_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/ruby/core/time/sunday_spec.rb b/spec/ruby/core/time/sunday_spec.rb
index 2285583579..0d46421132 100644
--- a/spec/ruby/core/time/sunday_spec.rb
+++ b/spec/ruby/core/time/sunday_spec.rb
@@ -2,10 +2,10 @@ require_relative '../../spec_helper'
describe "Time#sunday?" do
it "returns true if time represents Sunday" do
- Time.local(2000, 1, 2).sunday?.should == true
+ Time.local(2000, 1, 2).should.sunday?
end
it "returns false if time doesn't represent Sunday" do
- Time.local(2000, 1, 1).sunday?.should == false
+ Time.local(2000, 1, 1).should_not.sunday?
end
end