11 lines
205 B
Ruby
11 lines
205 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryBot.define do
|
|
factory :foto do
|
|
title {"MyString"}
|
|
desc {"MyText"}
|
|
gallery_id {1}
|
|
datei {"MyString"}
|
|
end
|
|
end
|