Subject: | Test file with invalid \ on Windows |
On Windows, when I create a module, MS creates a test file 00-load.t with a diag() that contains the file name of perl.exe. That file name contains unescaped \ which triggers warnings.
Example:
diag( "Testing Win32::Word::FromHTML $Win32::Word::FromHTML::VERSION, Perl 5.008003, C:\appl\dev\mod_perl\Perl\bin\perl.exe" );
Suggestion: Either quotemeta the string or s|\\|/|g