osem-fcy/spec/factories/conferences.rb

16 lines
432 B
Ruby
Raw Normal View History

2014-04-30 14:48:20 +02:00
# Read about factories at https://github.com/thoughtbot/factory_girl
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
timezone 'Amsterdam'
start_date { Date.today }
end_date { 6.days.from_now }
registration_start_date { 3.days.from_now }
registration_end_date { 5.days.from_now }
make_conference_public true
2014-06-14 18:33:39 +05:30
venue
end
end