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

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