Ian Langworth wrote:
No one else has replied, so here's a shot in the dark: Try setting the
PERLIO environment variable to "crlf" (without quotes).
Thanks, Ian. That didn't rid me of the error, but I did do a bit more
digging. The error is related to my pod.t which is, just as in the docs:
use Test::More;
eval "use Test::Pod 1.14";
plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
all_pod_files_ok();
Running this under my test harness, I get the error. Running this with
prove directly, I get no errors. I probably won't dig further into this
as it's not really worth the time. I'm guessing the problem is
Test::Harness::* related.
Thanks,
Troy