forked from bofh/fetsite
11 lines
198 B
Ruby
11 lines
198 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :foto do
|
|
title "MyString"
|
|
desc "MyText"
|
|
gallery_id 1
|
|
datei "MyString"
|
|
end
|
|
end
|