2adff3966a
#297 #297 #297 #297 #297 Merge remote-tracking branch 'origin/main' into feature/297 #297 #297 #297 #297 #297 #297 #297 #297 #297 Co-authored-by: miteruzo <miteruzo@naver.com> Reviewed-on: #299
12 lines
235 B
Ruby
12 lines
235 B
Ruby
FactoryBot.define do
|
|
factory :theatre do
|
|
name { 'Test Theatre' }
|
|
kind { 1 }
|
|
opens_at { Time.current }
|
|
closes_at { 1.day.from_now }
|
|
next_comment_no { 1 }
|
|
|
|
association :created_by_user, factory: :user
|
|
end
|
|
end
|