Re: [rspec-users] tests using factorygirl

2012-02-29 Thread Julian Leviston
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

Re: [rspec-users] tests using factorygirl

2012-02-29 Thread Ben Atkin
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

[rspec-users] tests using factorygirl

2012-02-29 Thread S Ahmed
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 this? Model Account has a location_id attribute (where Location is another model) So how do I set it? FactoryGirl. do location_id / en