Re: [rspec-users] Mock UploadedFile object in controller params

2012-06-21 Thread David Piegza
Thanks for the hint. But I would like to mock the UploadedFile object (I don't want to load a file..). My current workaround is to stub the params hash: controller.stub(:params).and_return { file: file } Would be nice if I could just pass in the mocked UploadedFile object... On 21.06.2012, at

Re: [rspec-users] Mock UploadedFile object in controller params

2012-06-21 Thread Justin Ko
On Jun 20, 2012, at 4:18 AM, David Piegza wrote: > Hi, > > I'm trying to mock an UploadedFile object and pass it to a controller action. > Unfortunately, the mocked object gets stringified in the params hash, so I'm > not able to use the mock object in a test. > > Is there any way to avoid th

[rspec-users] Mock UploadedFile object in controller params

2012-06-20 Thread David Piegza
Hi, I'm trying to mock an UploadedFile object and pass it to a controller action. Unfortunately, the mocked object gets stringified in the params hash, so I'm not able to use the mock object in a test. Is there any way to avoid this stringification for UploadedFile objects? This has been discu