summaryrefslogtreecommitdiff
path: root/spec/ruby/library/date/day_spec.rb
blob: bc727c4717bc3086a67c0959cbdf9254cbd1c13f (plain)
1
2
3
4
5
6
7
8
9
require_relative '../../spec_helper'
require 'date'

describe "Date#day" do
  it "returns the day" do
    d = Date.new(2000, 7, 1).day
    d.should == 1
  end
end