1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/spec/ruby/core/time/monday_spec.rb

12 lines
276 B
Ruby
Raw Normal View History

require_relative '../../spec_helper'
describe "Time#monday?" do
it "returns true if time represents Monday" do
2020-05-03 06:28:29 -04:00
Time.local(2000, 1, 3).should.monday?
end
it "returns false if time doesn't represent Monday" do
2020-05-03 06:28:29 -04:00
Time.local(2000, 1, 1).should_not.monday?
end
end