Fabrication gem associations that depend on each other

374 Views Asked by At

The following is my fabricator:

Fabricator(:my_fabricator) do
  my_first_association
  my_second_association
end

The problem here is that I need to pass my_first_association to my_second_association. Couldn't find anything related in the docs.

1

There are 1 best solutions below

2
Paul Elliott On BEST ANSWER

If you pass a block value you can inspect the attributes hash of the object being generated.

Fabricator(:my_fabricator) do
  my_first_association
  my_second_association do |attrs|
    Fabricate.build(:my_second_association, my_first_association: attrs[:my_first_association])
  end
end