summaryrefslogtreecommitdiff
path: root/test/factories/gui_function_memberships.rb
blob: c6f6d4aedfb2b929ac0da4e1b9bb0060a992abbb (plain)
1
2
3
4
5
6
7
8
9
10
# Read about factories at https://github.com/thoughtbot/factory_girl

FactoryGirl.define do
  factory :gui_function_membership do
    gui_function_id 1
    user_group_id 1
    activated false
    output "MyString"
  end
end