Welcome to mirror list, hosted at ThFree Co, Russian Federation.

appearances.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5f9c57c0c8d28d679d29a2cce3375e754436496c (plain)
1
2
3
4
5
6
7
8
9
# Read about factories at https://github.com/thoughtbot/factory_bot

FactoryBot.define do
  factory :appearance do
    title       "MepMep"
    description "This is my Community Edition instance"
    new_project_guidelines "Custom project guidelines"
  end
end