Subject: | broken test in 1.16 |
1.16 changed the helper script t/SOAP/Transport/HTTP/CGI/test_server.pl to use Encode::encode_utf, but that does not exist, and so test t/SOAP/Transport/HTTP/CGI.t breaks with an "unitialized value ... at Carp.pm"
replacing encode_utf with encode_utf8 (what probably was intended) does not help either as it double-encodes (?) the umlaut-u:
# got: 'ÃÂberall'
# expected: 'Ãberall'
just go back to test_server.pl from 1.14 ?