Files
fetsite/spec/factories/gremien.rb
2015-09-05 19:03:01 +02:00

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