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