On Wed, Jun 13, 2001 at 07:36:15PM +0200, H.Merijn Brand wrote:
> > use Test::More no_plan;
>
> no bare words, please ;-)
>
> use Test::More qw(no_plan);
I had started to add qw() to all my docs, but oddly enough nothing
seems to have a problem with that bareword. And it looks better
On Wed 13 Jun 2001 18:59, [EMAIL PROTECTED] wrote:
> First, "use Test::More no_plan;" now works! What this means is you
> can write:
>
> use Test::More no_plan;
no bare words, please ;-)
use Test::More qw(no_plan);
> ok($foo == $bar,'foo is bar');
> ok($right
Two big new things in the testing modules.
First, "use Test::More no_plan;" now works! What this means is you
can write:
use Test::More no_plan;
ok($foo == $bar,'foo is bar');
ok($right ne $wrong,'morality works');
That's it. You no longer need to declare h