Topic: images
i am working on spec/factories.rb and i am loading fake data for all my models but one of them require a image
how would i do this
FactoryGirl.define do
factory :profile do
email Faker::Internet.email
first_name Faker::Name.first_name
last_name Faker::Name.last_name
image ""
account
end
end