in reply to Re: Test::Simple problem
in thread Test::Simple problem
1..1 not ok 1 - VERSION test for Simplepm # Failed test (./test at line 7) # Did not find Simplepm # Looks like you failed 1 tests of 1.I was able to fix it with the following:
What's interesting here is I didn't receive any message that VERSION was found in Simple.pm.#!/usr/bin/perl + use Test::Version; + use Test::Simple tests => 1; $file="Simple.pm"; version_ok( $file );
1..1 not ok 1 - VERSION test for Simple.pm # Failed test (./test at line 7) # Found no VERSION in Simple.pm # Looks like you failed 1 tests of 1.Am I on the right track or did I miss something? Hoping to understand these two modules a little better :-)
|
|---|