So I have two specs which I thought are testing the same thing yet one fails while the other one passes. I'm working on an app which has a recurring schedule. If a user creates an trip that recurs it will go ahead and create new trips for each day specified. Here is the first test which fails:
it "makes future trips" do
expect{FactoryGirl.create(:recurring_transportation_trip)}.to change(Trip, :count).by(4)
end
The recurring_transportation_trip creates a trip which will make the three future trips via an after_save callback. This test fails with the error "count should have been changed by 4, but was changed by 1".
Here is another test which passes:
it "makes future trips" do
count = Trip.count
FactoryGirl.create(:recurring_transportation_trip)
Trip.count == count + 4
end
Showing that the correct functionality is there.
The first test is certainly more readable but doesn't actually test what I think it does. Can anyone offer and explaination for why?
-------EDIT-------
Adding the Factory code by request:
FactoryGirl.define do
factory :recurring_transportation_trip, :class => :trip do
collection_time "09:00"
estimated_duration "60"
status "Confirmed"
mileage "30"
association :collection, :factory => :location
association :destination, :factory => :location
association :call, :factory => :recurring_call
end
end
and for the recurring_call
FactoryGirl.define do
factory :recurring_call, :class => "Call" do
recurring true
recurring_start_date Date.today
recurring_end_date Date.today + 1.week
recurring_config [1, 3, 5]
end
end
-------EDIT2-------
Turns out Trip.count == count + 4 isn't actually asserting anything and the test Trip.count.should == count + 4 does indeed fail. Thanks @BenediktDeicke for pointing this out.
-------EDIT3-------
In the end it was an error in my application code and I should have trusted the original test from the beginning. Thanks to everyone who took a look. @boulder and @BenediktDeicke thanks for pointing out the lack of assertion mentioned in edit2.
change{Trip.count}instead ofchange(Trip, :count)like that :expect{FactoryGirl.create(:recurring_transportation_trip)}.to change{Trip.count}.by(4)same issue ? – pjam Feb 5 at 19:00change(Trip, :count)tochange{Trip.count}gives the same result (just noticed the block =p) – Matthew Sumner Feb 5 at 19:15Trip.count == count + 4toTrip.count.should == count + 4to see it - most likely - fail – Benedikt Deicke Feb 5 at 19:50