Subject: | Tests fail with Pod::Text 3.07 |
[Note: this bug is actually against v0.07, but rt.cpan.org doesn't know
about that version yet]
I believe Pod::Text 3.x changed its API so all internal properties are
prefixed with "opt_". So, when Pod::Readme::initialize() says
$$self{readme_type} ||= "readme";
it always gets "readme" because it should be assigning like:
$$self{readme_type} = $$self{opt_readme_type} || $$self{readme_type}
|| "readme";
The consequence of this is that all of the INVALID_TYPES tests in
10-basic.t mistakenly generate no errors.
-- Chris