forked from bofh/fetsite
15 lines
369 B
Ruby
15 lines
369 B
Ruby
# -*- coding: utf-8 -*-
|
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :gremium do
|
|
name "Kommission"
|
|
desc "Das ist eine Kommission die sich mit irgendwas beschäftigt"
|
|
typ 1
|
|
factory :gremium_with_fetprofile do
|
|
association :memberships, factory: :membership_with_fetprofile
|
|
end
|
|
end
|
|
end
|