Hello,
First of all, thanks for writing this module! I use it often to
validate my modules and make sure I don't forget this :)
However, it seems like a update of Test::More changed some things
around. I now get this (harmless) error when running Test::Strict:
t/a_strict................no_plan takes no arguments at
/usr/lib64/perl5/site_perl/5.8.8/Test/Strict.pm line 283.
t/a_strict................ok
Digging through the code, it seems like Test::More/Harness/etc was
changed to not allow any arguments to no_plan. All you would need to do
is update line 397 in Test::Strict v0.09 ( the _make_plan sub ) to pass
no arguments.
It should look like this: $Test->plan( 'no_plan' );
Thanks again!
--
~Apocalypse