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: c9ed86cc0ac78cfa83bfd8bdf181b1ee7ce3333d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

FactoryBot.define do
  factory :project_custom_attribute do
    project
    sequence(:key) { |n| "key#{n}" }
    sequence(:value) { |n| "value#{n}" }
  end
end