mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-16 13:14:03 +00:00
8 lines
199 B
Ruby
8 lines
199 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :registration_period do
|
|
start_date { 3.days.ago }
|
|
end_date { 5.days.from_now }
|
|
end
|
|
end
|