summaryrefslogtreecommitdiff
path: root/spec/factories/group_custom_attributes.rb
blob: 895bc42c84be0d1a4ada259bff823fafafccd804 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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