in reply to Re: Sub calling sadness
in thread Sub calling sadness
Alright. Perl must fairly liberally interpret it sometimes; because it was working as ok( ThatPackage::blah($foo), 'blah' ) until $foo contained leading whitespace :( (I could tell because the ok() method was correctly printing out 'blah' as the test description)ok( ThatPackage::blah $foo, 'blah' ); means ok( ThatPackage::blah($foo, 'blah') );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Sub calling sadness
by stiller (Friar) on Mar 08, 2008 at 07:52 UTC | |
by nefigah (Monk) on Mar 08, 2008 at 08:09 UTC |