summaryrefslogtreecommitdiff
path: root/spec/rubyspec/core/time/tuesday_spec.rb
blob: 87c3236eea6d90ec946217d71c35d112291bb741 (plain)
1
2
3
4
5
6
7
8
9
10
11
require File.expand_path('../../../spec_helper', __FILE__)

describe "Time#tuesday?" do
  it "returns true if time represents Tuesday" do
    Time.local(2000, 1, 4).tuesday?.should == true
  end

  it "returns false if time doesn't represent Tuesday" do
    Time.local(2000, 1, 1).tuesday?.should == false
  end
end