Hi,
I've can successfully upload an image from a browser but using the same route in my test suite with this:
$response = dancer_response( POST => '/auth/location/1011/image',
{
params => {},
files => [{name => 'file', filename => "test.png"}]
},
);
I get the error:
"libpng error: PNG file corrupted by ASCII conversion"
so I'm guessing the test is missing something that the browser is doing? Any ideas?
thanks
Stephen