mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
16 lines
391 B
Ruby
16 lines
391 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|