summaryrefslogtreecommitdiff
path: root/spec/factories/group_custom_attributes.rb
blob: d2f45d5d3cea2981f620923718738977a9cc8196 (plain)
1
2
3
4
5
6
7
FactoryBot.define do
  factory :group_custom_attribute do
    group
    sequence(:key) { |n| "key#{n}" }
    sequence(:value) { |n| "value#{n}" }
  end
end