aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/time/friday_spec.rb
blob: 27f9e1dbe5e4a32d10df3ad3e0b1507d3569c203 (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative '../../spec_helper'

describe "Time#friday?" do
  it "returns true if time represents Friday" do
    Time.local(2000, 1, 7).friday?.should == true
  end

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