clarion/spec/factories/slots.rb
Petko Bordjukov fac65a167a Add missing specs for Tracks, Halls and Slots
Document the behaviour of Tracks, Slots and Halls with specs. Leave the
association between slots and events pending for now.
2014-11-05 11:45:04 +02:00

10 lines
195 B
Ruby

# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :slot do
starts_at { Time.now }
ends_at { Time.now + 45.minutes }
hall
end
end