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

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