Rooms belong to venue

This commit is contained in:
Stella Rouzi 2015-11-07 11:43:36 +02:00
parent 1fcefafe64
commit 3c6ddb2f52
31 changed files with 213 additions and 165 deletions

9
spec/factories/cfps.rb Normal file
View file

@ -0,0 +1,9 @@
# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :cfp do
program
start_date { 1.day.ago }
end_date { 6.days.from_now }
end
end