11 lines
219 B
Ruby
11 lines
219 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryBot.define do
|
|
factory :fetznedition do
|
|
title {"MyString"}
|
|
desc {"MyText"}
|
|
datum {"2013-08-19"}
|
|
datei {"MyString"}
|
|
end
|
|
end
|