forked from bofh/fetsite
12 lines
203 B
Ruby
12 lines
203 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :modul do
|
|
name {""}
|
|
factory :other_modul do
|
|
name {"Modul 1"}
|
|
end
|
|
end
|
|
end
|