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

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