osem-fcy/spec/factories/booths.rb
2017-08-08 16:18:07 +03:00

14 lines
360 B
Ruby

FactoryGirl.define do
factory :booth do
title { Faker::Hipster.sentence }
description { Faker::Lorem.paragraph }
reasoning { Faker::Lorem.paragraph }
website_url { Faker::Internet.url }
submitter_relationship { Faker::Lorem.paragraph }
conference
submitter { create(:user) }
responsible_ids { [create(:user).id] }
end
end