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

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