osem-fcy/spec/factories/conferences.rb
Gopesh Tulsyan 2b94ba0281 Adds routing error check in conference#show
Adds make_conference_public to conference factory

Added test
2014-06-19 22:17:32 +05:30

15 lines
389 B
Ruby

# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :conference do
title 'The dog and pony show'
sequence(:short_title) { |n| "dps#{n}14" }
social_tag 'dps14'
timezone 'Amsterdam'
contact_email 'admin@example.com'
start_date Date.today
end_date Date.tomorrow
make_conference_public true
venue
end
end