2014-08-18 14:33:02 +02:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
|
factory :registration_period do
|
2016-04-30 17:56:23 +02:00
|
|
|
start_date { 3.days.ago }
|
2014-08-18 14:33:02 +02:00
|
|
|
end_date { 5.days.from_now }
|
|
|
|
|
end
|
|
|
|
|
end
|