osem-fcy/spec/factories/booths.rb

16 lines
364 B
Ruby
Raw Normal View History

2017-05-17 13:31:27 +03:00
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
after(:build) do |booth|
booth.responsibles << create(:user)
end
end
end