15 lines
375 B
Ruby
15 lines
375 B
Ruby
FactoryBot.define do
|
|
factory :app_catalog_web_app, class: 'AppCatalog::WebApp' do
|
|
url { "https://myfavoritedrinks.remotestorage.io/" }
|
|
name { "My Favorite Drinks" }
|
|
short_name { "Drinks" }
|
|
description { nil }
|
|
theme_color { nil }
|
|
background_color { nil }
|
|
display { nil }
|
|
start_url { nil }
|
|
scope { nil }
|
|
share_target { nil }
|
|
end
|
|
end
|