forked from bofh/fetsite
11 lines
212 B
Ruby
11 lines
212 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :fetznedition do
|
|
title "MyString"
|
|
desc "MyText"
|
|
datum "2013-08-19"
|
|
datei "MyString"
|
|
end
|
|
end
|