Sha256: 8c2db3fce6218a9fecca5fecd0089da547cbe87f9b775683ba8b72d736676f9b
Contents?: true
Size: 1.32 KB
Versions: 1
Compression:
Stored size: 1.32 KB
Contents
require 'spec_helper' module Calagator describe Event::Cloner do describe 'when cloning' do let :original do FactoryBot.build(:event, id: 42, start_time: Time.zone.parse('2008-01-19 10:00:00'), end_time: Time.zone.parse('2008-01-19 17:00:00'), tag_list: 'foo, bar, baz', venue_details: 'Details') end subject do Event::Cloner.clone(original) end it { should be_new_record } its(:id) { should be_nil } describe '#start_time' do it 'should equal todays date with the same time' do subject.start_time.to_date.should == Date.today subject.start_time.hour.should == original.start_time.hour subject.start_time.min.should == original.start_time.min end end describe '#end_time' do it 'should equal todays date with the same time' do subject.end_time.to_date.should == Date.today subject.end_time.hour.should == original.end_time.hour subject.end_time.min.should == original.end_time.min end end %w[title description url venue_id venue_details tag_list].each do |field| its(field) { should eq original.send(field) } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
calagator-1.1.0 | spec/models/calagator/event/cloner_spec.rb |