I want to use Factory Girl to generate a large collection of models, each of which only differ by one or two attributes.
Is there a way to have a factory accept an instance of a model? Ideally, I'd like
before(:all) do
data1 = create(:instance,
:attribute_1 => 1,
:attribute_2 => 2,
:attribute_3 => "something",
:attribute_4 => "something else",
:attribute_5 => 5
...
)
data2 = create(:instance,
:attribute 2 => 15,
base: data1
)
end
data2 would be initialized as a clone of data1, and I could just specify the new attributes I wanted to overwrite.
I've tried using transient attributes but can't see a way to implement something like:
FactoryGirl.define do
factory :instance do
ignore do
base nil
end
attribute_1 { base.nil? ? argument.attribute_1 : base.attribute_1 + argument.attribute_1 }
attribute_2 { base.nil? ? argument.attribute_2 : base.attribute_2 + argument.attribute_1 }
...
end
end
Am I'm approaching this in entirely the wrong way?
