summaryrefslogtreecommitdiff
path: root/spec/ruby/library/date/monday_spec.rb
blob: 14a117b73c4e4963d1bf46ac14dc2c50f7f6db61 (plain)
1
2
3
4
5
6
7
8
require_relative '../../spec_helper'
require 'date'

describe "Date#monday?" do
  it "should be monday" do
    Date.new(2000, 1, 3).monday?.should be_true
  end
end