forked from bofh/fetsite
17 lines
339 B
Ruby
17 lines
339 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :membership do
|
|
|
|
start "2013-08-19"
|
|
stop "2013-08-23"
|
|
typ 1
|
|
factory :membership_with_fetprofile do
|
|
association :fetprofile
|
|
end
|
|
factory :membership_with_gremium do
|
|
association :gremium
|
|
end
|
|
end
|
|
end
|