summaryrefslogtreecommitdiff
path: root/spec/ruby/core/time/friday_spec.rb
blob: 8bee7f755837b1ca88d5b344d01d169ff346f489 (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).should.friday?
  end

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