mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
10 lines
197 B
Ruby
10 lines
197 B
Ruby
FactoryBot.define do
|
|
factory :tenant do
|
|
site_name { "MySiteName" }
|
|
site_logo { "" }
|
|
sequence(:subdomain) { |n| "mysubdomain#{n}" }
|
|
locale { "en" }
|
|
custom_url { "" }
|
|
end
|
|
end
|