I have some specs, written in RSpec, that test various models. I use Factory Girl to generate object for testing.
Now the most peculiar thing happens:
When i run rspec spec/models/specific_model_spec.rb
--- this passes all the tests in that spec
However, when I run rspec spec/models
--- every test in this spec fails referring to an invalid association being created (via a factory)
The association created by the factory is obviously valid as running the test in isolation also shows.
What could be causing this behavior?
Update:
The error i get when running the spec together with other specs (the error is the same for each failure):
6) StreamItem adds a stream_item to a project and consultant when an engagement is added
Failure/Error: @project = Factory.create(:project, :name => 'bar' )
Validation failed: Customer is invalid
# ./spec/models/stream_item_spec.rb:44:in `block (2 levels) in <top (required)>'
The project factory
is tested in another spec and passes fine...
Update 2:
The relevant factory code used is a follows:
Factory.define :manager, :class => User do |f|
f.sequence(:email) { |n| "bar#{n}@example.com" }
f.password "pass12"
f.sequence(:name) { |n| "Erwin#{n}" }
f.roles_mask 4
end
Factory.define :customer do |f|
f.sequence(:name) { |n| "foo customer#{n}" }
f.association :last_actor, :factory => :manager
f.account_id 1
end
Factory.define :project do |f|
f.sequence(:name) { |n| "foo project#{n}" }
f.association :manager, :factory => :manager
f.association :customer, :factory => :customer
f.start_date Date.today << 1
f.finish_date Date.today >> 2
f.status 1
f.association :last_actor, :factory => :manager
f.account_id 1
end
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…