Nah I had this issue, too... use this
FactoryGirl do
assocation :location, etc. (look it up)
end
On 01/03/2012, at 4:19 PM, S Ahmed wrote:
> I'm trying to use factory for a test case, but the model I am creating via
> the factory depends on another model, how do you setup a factory like thi
Here is the relevant documentation:
http://rdoc.info/github/thoughtbot/factory_girl/file/GETTING_STARTED.md#Associations
Or if it already exists you might try:
FactoryGirl.define :account do
location { Location.where("city = ?", 'Austin').first }
end
(The code in the block just needs to retur