Files
docuseal/spec/factories/template_folders.rb
T
Pete Matsyburka 152cbc11a6 fix specs
2026-07-26 17:44:01 +03:00

17 lines
355 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :template_folder do
account
author factory: %i[user]
name { Faker::Book.unique.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