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

describe "Time#wednesday?" do
  it "returns true if time represents Wednesday" do
    Time.local(2000, 1, 5).should.wednesday?
  end

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