summaryrefslogtreecommitdiff
path: root/spec/ruby/core/time/monday_spec.rb
blob: 47ecaeb1db2a22b04daeed8bea13039e5e34989e (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../spec_helper'

describe "Time#monday?" do
  it "returns true if time represents Monday" do
    Time.local(2000, 1, 3).should.monday?
  end

  it "returns false if time doesn't represent Monday" do
    Time.local(2000, 1, 1).should_not.monday?
  end
end