2017-12-13 19:13:44 -05:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_bot
|
2016-02-22 14:49:16 -05:00
|
|
|
|
2017-12-13 19:13:44 -05:00
|
|
|
FactoryBot.define do
|
2016-02-22 14:49:16 -05:00
|
|
|
factory :appearance do
|
2018-03-26 09:07:46 -04:00
|
|
|
title "GitLab Community Edition"
|
2018-02-21 11:43:21 -05:00
|
|
|
description "Open source software to collaborate on code"
|
2017-11-22 08:48:38 -05:00
|
|
|
new_project_guidelines "Custom project guidelines"
|
2016-02-22 14:49:16 -05:00
|
|
|
end
|
2018-02-21 11:43:21 -05:00
|
|
|
|
|
|
|
trait :with_logo do
|
|
|
|
logo { fixture_file_upload('spec/fixtures/dk.png') }
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :with_header_logo do
|
|
|
|
header_logo { fixture_file_upload('spec/fixtures/dk.png') }
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :with_logos do
|
|
|
|
with_logo
|
|
|
|
with_header_logo
|
|
|
|
end
|
2016-02-22 14:49:16 -05:00
|
|
|
end
|