FactoryBot.define do factory :casting_submission do association :casting_call performer_name 'John Doe' zoom_meeting_url 'https://us04web.zoom.us/j/1111111111?pwd=aDZCS1dzZ2lWdDZJcHBhVnNIclB4QT03' interview_date { 10.days.from_now } interviewed_at { nil } trait :with_files do files { [Rack::Test::UploadedFile.new('spec/fixtures/files/location_photo.png', 'image/png')] } end end end