Oftentimes, when building entities in rom-factory, I would like to have a shared entity for different factories.
This way, all of the corresponding factories can re-use the same entity:
with_associations(user: Factory[:user]) do
Factory[:profile] # will use the above user automatically
end
Thoughts?