ensl.org/spec/factories/contest.rb
2020-03-15 15:33:58 +02:00

10 lines
214 B
Ruby
Executable file

FactoryBot.define do
factory :contest do
sequence(:name) { |n| "Contest ##{n}" }
start Date.yesterday
self.end Date.tomorrow
status Contest::STATUS_PROGRESS
default_time "12:00:00"
end
end