On 9/23/06, Johnson, Reginald (GTI) <[EMAIL PROTECTED]> wrote:
t/1....Test header seen more than once!
use Test::More tests => 1;
BEGIN { $| = 1; print "1..3\n";}
Using Test::More outputs the test header line, so you don't need to
print "1..3\n"; but be sure to use the correct number of tests:
use Test::More tests => 3;
Cheers!
--Tom Phoenix
Stonehenge Perl Training
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>