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

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