2014-11-05 11:45:04 +02:00
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
2019-04-28 01:25:13 +03:00
|
|
|
FactoryBot.define do
|
2014-11-05 11:45:04 +02:00
|
|
|
factory :slot do
|
|
|
|
starts_at { Time.now }
|
|
|
|
ends_at { Time.now + 45.minutes }
|
|
|
|
hall
|
|
|
|
end
|
|
|
|
end
|