summaryrefslogtreecommitdiff
path: root/spec/ruby/library/date/monday_spec.rb
blob: f7d968b6d6c46a9ae8f19ba6bd6ae48cf9efdcbd (plain)
1
2
3
4
5
6
7
8
require File.expand_path('../../../spec_helper', __FILE__)
require 'date'

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