2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2018-09-03 20:48:28 +02:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_bot
|
2014-08-18 14:33:02 +02:00
|
|
|
|
2018-09-03 20:44:39 +02:00
|
|
|
FactoryBot.define do
|
2014-08-18 14:33:02 +02:00
|
|
|
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
|