Files
docuseal/spec/factories/template_folders.rb
T
2023-12-23 21:30:46 +02:00

17 lines
348 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :template_folder do
account
author factory: %i[user]
name { Faker::Book.title }
trait :with_templates do
after(:create) do |template_folder|
create_list(:template, 2, folder: template_folder, account: template_folder.account)
end
end
end
end