vote up 1 vote down star
1

I normally use this step to set up records with factory_girl:

Given /^the following (.+) records?:$/ do |factory, table|
  table.hashes.each do |hash|
    Factory(factory, hash)
  end
end

And here's my work-around when setting up associations:

Given the following group record:
  | id | name |
  | 1  | foo  |
And the following item records:
  | name | group_id |
  | bar  | 1        |
  | baz  | 1        |
  # ...

I know this is bad. Using ids makes the whole thing brittle and cryptic from the vantage of the domain person.

So, my question is -- what would be the best practice to set up an association with factory_girl and a table argument like the one above?

flag

71% accept rate

2 Answers

vote up 0 vote down

Just to answer my own question: Pickle

link|flag
vote up 2 vote down

You can define multiple associations in a factory.
Like the following :

Factory.define :item do |item|
    item.name          "item_name"
end

Factory.define :group do |group|
    group.name          "group_name"
    group.items         { |items| [ items.association(:item), items.association(:item) ] }
end

Doing a Factory(:group) will create your group uplet with two items in it.

link|flag
1  
The trick here is that group.items should return an array. It took me a while to work that out. – jonnii Nov 4 at 14:40
Yeah that's not easy to understand (but seeing how it works, it's logical) – Damien MATHIEU Nov 4 at 14:50
Got you. But is there a way to wrap a cucumber step with a table parameter (like the one in my post) around such a factory? Perhaps, I should just take a pragmatic approach and be verbose and specific in the step ("Given I have two items, foo and bar, that belong to a group called foo") instead of fussing with tables, but that sounds somewhat like an anti-pattern to me? – snl Nov 4 at 14:56
No it's not possible to wrap a cucumber step inside a factory. – Damien MATHIEU Nov 4 at 15:43

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.