12 lines
258 B
Ruby
12 lines
258 B
Ruby
# -*- coding: utf-8 -*-
|
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryBot.define do
|
|
factory :gremium do
|
|
name {"Kommission"}
|
|
desc {"Das ist eine Kommission die sich mit irgendwas beschäftigt"}
|
|
typ {1}
|
|
end
|
|
end
|