forked from bofh/fetsite
10 lines
185 B
Ruby
10 lines
185 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :gallery do
|
|
name "MyString"
|
|
desc "MyText"
|
|
datum "2013-08-19"
|
|
end
|
|
end
|