Subject: | Fails when Test::Requires is not present |
As per subject.
The reason is un unused.t the sequence block-eval use-statement which
does not protect as a string eval does.
Here is the code from unused.t:
https://metacpan.org/source/NHORNE/CGI-Untaint-Facebook-0.06/t/unused.t#L10
eval {
use Test::Requires {
'warnings::unused' => 0.04
};
};
if($@) {
The last line is not reached when Test::Requires is not available
because the block eval does not hide the use statement.
Sample fail report:
http://www.cpantesters.org/cpan/report/27151778
HTH&&Regards,