I am trying to test file upload but when I am doing:
controller_specs
…
post ‘some_path’, params: { file: Rack::Test::UploadedFile.new(…) }
…
I get in controller file as string “Rack::Test::UploadedFile:123123123”, so I can’t pass files in controller spec.
Does anyone know how to do it right? I think I am missing something.
