mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-26 20:41:01 +00:00
10 lines
215 B
Ruby
Executable file
10 lines
215 B
Ruby
Executable file
FactoryGirl.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
|