Creating More than One Instance with FactoryGirl
In some test fixtures I need to create an array of instances . FactoryGirl provides the create_list
method for exactly this purpose.
To create four shipments on an outbound trailer:
FactoryGirl.create_list(:shipment, 4, outbound_trailer: trailer)
In the example above, create_list
returns an array containing the newly created shipments.
Written on February 12, 2017 by alistairmckinnell