Sha256: 4a16cbfc8069b61e9d19bcea4928996deeb760c2e4984d0ea44dcfb627eca381
Contents?: true
Size: 1.2 KB
Versions: 9
Compression:
Stored size: 1.2 KB
Contents
require 'spec_helper' module Calagator describe Event::Cloner do describe "when cloning" do let :original do FactoryGirl.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
9 entries across 9 versions & 2 rubygems