mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +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
|