BikeBikeBike/test/factories/conference_host_organizations.rb
2014-03-09 14:43:33 -06:00

10 lines
199 B
Ruby

# Read about factories at https://github.com/thoughtbot/factory_girl
FactoryGirl.define do
factory :conference_host_organization do
conference_id 1
organization_id 1
order 1
end
end