forked from bofh/fetsite
11 lines
197 B
Ruby
11 lines
197 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :modulgruppe do
|
|
typ "Pflicht"
|
|
phase 1
|
|
name "Pflichtmodule 1"
|
|
desc "ASDFASDF"
|
|
end
|
|
end
|