summaryrefslogtreecommitdiff
path: root/spec/ruby/library/date/shared/month.rb
blob: 5fcb2cbeb0cead1328bcce3cbf24f7c7c2344465 (plain)
1
2
3
4
5
6
describe :date_month, shared: true do
  it "returns the month" do
    m = Date.new(2000, 7, 1).send(@method)
    m.should == 7
  end
end