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

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