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

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