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
9 lines
168 B
Ruby
9 lines
168 B
Ruby
FactoryBot.define do
|
|
factory :theatre_comment do
|
|
association :theatre
|
|
association :user
|
|
sequence (:no) { |n| n }
|
|
content { 'test comment' }
|
|
end
|
|
end
|