2014-04-30 14:48:20 +02:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
|
2014-04-09 01:32:47 +02:00
|
|
|
FactoryGirl.define do
|
|
|
|
|
factory :conference do
|
2014-04-27 17:52:39 +02:00
|
|
|
title 'The dog and pony show'
|
2014-05-19 12:49:04 +05:30
|
|
|
sequence(:short_title) { |n| "dps#{n}14" }
|
2014-04-27 17:52:39 +02:00
|
|
|
social_tag 'dps14'
|
|
|
|
|
timezone 'Amsterdam'
|
|
|
|
|
contact_email 'admin@example.com'
|
2014-04-24 22:02:50 +02:00
|
|
|
start_date Date.today
|
2014-07-13 11:55:42 +05:30
|
|
|
end_date Date.today + 6.days
|
|
|
|
|
registration_start_date Date.today + 3.days
|
|
|
|
|
registration_end_date Date.today + 5.days
|
2014-06-17 00:47:49 +05:30
|
|
|
make_conference_public true
|
2014-06-14 18:33:39 +05:30
|
|
|
venue
|
2014-04-09 01:32:47 +02:00
|
|
|
end
|
|
|
|
|
end
|