6fb3532f01
Add missing specs for the Conference model and remove unnecessary functionality. Also introduce a Hall factory.
11 lines
221 B
Ruby
11 lines
221 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :track do
|
|
name { |n| "Track#{n}" }
|
|
color '#000000'
|
|
description 'Some description'
|
|
conference
|
|
end
|
|
end
|