9 lines
204 B
Ruby
9 lines
204 B
Ruby
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
||
|
|
|
||
|
|
FactoryGirl.define do
|
||
|
|
factory :registration_period do
|
||
|
|
start_date { 3.days.from_now }
|
||
|
|
end_date { 5.days.from_now }
|
||
|
|
end
|
||
|
|
end
|