ぼざクリタグ広場 https://hub.nizika.monster
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

12 lines
235 B

  1. FactoryBot.define do
  2. factory :theatre do
  3. name { 'Test Theatre' }
  4. kind { 1 }
  5. opens_at { Time.current }
  6. closes_at { 1.day.from_now }
  7. next_comment_no { 1 }
  8. association :created_by_user, factory: :user
  9. end
  10. end