In tests it's common to create several objects which vary by only one or two attributes (particularly when asserting the order, or filtering, of entities):
it "sorts dogs oldest to youngest" do
dog_1 = build(:dog, name: "Fido", age: 5)
dog_2 = build(:dog, name: "Benji", age: 10)
dog_3 = build(:dog, name: "Spot", age: 1)
expect(DogSorter.new.sort).to eq [dog_2, dog_1, dog_3]
endWith FactoryBotVariants you could write this as:
dog_1, dog_2, dog_3 = build_variants(:dog, names: ["Fido", "Benji", "Spot"], ages: [5, 10, 1])You can specify attribute names in plural if you like; names will become
name as the attributes are passed to your factory.
If you have common attributes to assign to each variant, use the :all key:
build_variants(:dog, names: ["Brutus", "Avril"], all: { cute: false })In your gemfile:
group :test do
gem "factory_bot_variants"
endThen bundle install and include the DSL where you'd like to use it:
require "factory_bot_variants/dsl"
RSpec.describe Dog do
include FactoryBotVariants::DSL
# Your spec
endrequire "factory_bot_variants/dsl"
RSpec.configure do |config|
config.include FactoryBotVariants::DSL
endThere's an equivalent _variants method per FactoryBot strategy:
build_variantscreate_variantsattributes_for_variantsbuild_stubbed_variants
Arguments:
- Factory name
- Traits (optional)
- One or more variant attributes
Example:
build_variants(
factory_name,
trait,
attr1: [:a, :b],
attr2: [1, 2],
all: { common_attr: 1 },
)