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

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