Sha256: 9cf7304a6e3b6d3d08894e145a387790a74bad402f6a2d139300cacde7276d1c
Contents?: true
Size: 1.44 KB
Versions: 6
Compression:
Stored size: 1.44 KB
Contents
module EDTF describe 'Seasons' do let(:subject) { Season.new } describe '#season?' do it 'returns true by default' do subject.should be_season end end describe '#season' do before(:each) { subject.season = :summer } it 'returns the season code' do subject.season.should == :summer end end describe '#season=' do it 'sets the season code when called with a valid season code' do lambda { (21..22).each do |i| subject.season = i end }.should_not raise_error end it 'throws an exception if given invalid season code' do lambda { subject.season = 13 }.should raise_error end end describe '#winter!' do it 'sets the season to :winter' do lambda { subject.winter! }.should change { subject.season }.to(:winter) end end describe '#winter?' do it 'returns true if the season is set to :winter' do subject.season = :winter subject.should be_winter end it 'returns false if the season is not set to :winter' do subject.season = :summer subject.should_not be_winter end end describe '#include?' do context 'for summer' do it 'returns true for August 24' do Season.new(1980, :summer).should include(Date.new(1980,8,24)) end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems