2014-06-10 12:43:15 +05:30
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
2014-08-12 08:38:51 +02:00
|
|
|
include ActionDispatch::TestProcess
|
2014-06-10 12:43:15 +05:30
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
|
factory :photo do
|
2014-08-12 08:38:51 +02:00
|
|
|
picture { fixture_file_upload(Rails.root.join('app', 'assets', 'images', 'rails.png'), 'image/png') }
|
2014-06-10 12:43:15 +05:30
|
|
|
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
|