forked from bofh/fetsite
9 lines
164 B
Ruby
9 lines
164 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryBot.define do
|
|
factory :frage do
|
|
title {"MyString"}
|
|
text {"MyText"}
|
|
end
|
|
end
|