2014-06-10 12:43:15 +05:30
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
|
factory :photo do
|
|
|
|
|
picture_file_name 'rails.png'
|
|
|
|
|
picture_content_type 'image/png'
|
|
|
|
|
picture_file_size '1024'
|
2014-07-23 09:08:50 +02:00
|
|
|
picture_updated_at { DateTime.now }
|
2014-06-10 12:43:15 +05:30
|
|
|
description 'Lorem Ipsum Dolor'
|
|
|
|
|
conference
|
|
|
|
|
end
|
|
|
|
|
end
|