Files
openfoodnetwork/spec/factories/custom_tab_factory.rb
2023-05-25 09:19:51 +02:00

10 lines
187 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :custom_tab do
enterprise { build(:distributor_enterprise) }
title { "MyString" }
content { "MyText" }
end
end