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

project_custom_attributes.rb « factories « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 099d2d7ff19d3b04ebf8d24c695629e0c93a25b3 (plain)
1
2
3
4
5
6
7
FactoryBot.define do
  factory :project_custom_attribute do
    project
    sequence(:key) { |n| "key#{n}" }
    sequence(:value) { |n| "value#{n}" }
  end
end