in reply to Test::Simple problem
use Test::Simple =>10;
Executing your code gives a syntax error: syntax error at ... line ..., near "use Test::Simple =>"
A brief look into the Test::Simple manual shows you left out the keyword "tests", so try this:
use Test::Version;
use Test::Simple tests =>10;
$file=Simple.pm;
version_ok( $file );
Cheers, Sören
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Test::Simple problem
by u235sentinel (Hermit) on Jun 28, 2004 at 18:30 UTC |