Basic Factory Definition
Learn to write an example for factory_bot.
We'll cover the following...
All the definitions of our factories go inside a call to the method FactoryBot.define
, which takes a block argument. Inside that block, we can declare factories to define default data. Each factory declaration takes its own argument in which we can define default values on an attribute-by-attribute basis.
A simple example ...