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
|
2015-10-25 13:29:02 +02:00
|
|
|
factory :cfp do
|
2014-07-23 09:08:50 +02:00
|
|
|
start_date { 1.day.ago }
|
2017-07-07 16:13:35 +03:00
|
|
|
end_date { 2.days.from_now }
|
2017-06-01 01:11:28 +03:00
|
|
|
cfp_type 'events'
|
2016-04-30 17:56:23 +02:00
|
|
|
|
|
|
|
|
program
|
2014-04-09 01:32:47 +02:00
|
|
|
end
|
|
|
|
|
end
|