2014-06-05 17:51:22 +05:30
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
|
factory :sponsor do
|
|
|
|
|
name 'Example sponsor'
|
|
|
|
|
website_url 'http://www.example.com'
|
|
|
|
|
description 'Lorem Ipsum Dolor'
|
2014-06-13 00:49:48 +05:30
|
|
|
logo_file_name 'rails.jpg'
|
|
|
|
|
logo_file_size 2000
|
|
|
|
|
logo_content_type 'image/jpeg'
|
|
|
|
|
logo_updated_at DateTime.current
|
2014-06-05 17:51:22 +05:30
|
|
|
sponsorship_level
|
|
|
|
|
conference
|
|
|
|
|
end
|
|
|
|
|
end
|