* Add map to splash * Reverse venue<->conference relation * Split venue address into fields * Don't go through venue for lodgings anymore
9 lines
227 B
Ruby
9 lines
227 B
Ruby
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
FactoryGirl.define do
|
|
factory :lodging do
|
|
name 'Example Hotel'
|
|
description 'Lorem Ipsum Dolor'
|
|
website_link 'http://www.example.com'
|
|
end
|
|
end
|