On Sun, Apr 27, 2008 at 12:39:02PM -0400, Patrick Galbraith wrote:
> t/70takeimp....ok 1/21# You named your test '1'. You shouldn't use
> numbers for your test names.
>
> "You named your test 1" Strage error. I know it's probably something
> simple and easy - has anyone a suggestion how I might get rid of this
> error? I look at how I'm running this and everything looks good.
Test::More has an API like
ok( $boolean, $testname )
is( $x, $y, $testname )
so there's probably a test like
ok( ..., 1 )
where the 1 should now be a test 'name,' like "the wibble should wobble".
Tim.