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

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