Subject: | hundreds of "use of uninitialized value" when testing |
I get hunndreded of warnings when testing my modules. I heven't digged
in at all and just got it to stop complaining.
at line 123, changed
if($caller[0] eq __PACKAGE__ ) {
with
if(defined $caller[0] && $caller[0] eq __PACKAGE__ ) {