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"}]
                                 },
                                
                             );

(taken from the http://search.cpan.org/~xsawyerx/Dancer-1.3080/lib/Dancer/Test.pm)

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