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

12 lines
253 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
end
end