in reply to Failed test of Net::SNTP::Client module
Test cases should always be run from within the module root directory to simulate exactly how CPAN testers does it (ie, the directory that t/ is in: perl t/Net-SNTP-Client.t), especially when using file names and paths as your test data.
It looks like your module might be creating the hash key from a relative directory path or script name, so try changing this line:
'Net-SNTP-Client.t' => {
to:
't/Net-SNTP-Client.t' => {
in the test and see if that fixes it.
-stevieb
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Failed test of Net::SNTP::Client module
by thanos1983 (Parson) on Jul 06, 2015 at 14:36 UTC | |
by stevieb (Canon) on Jul 06, 2015 at 14:42 UTC | |
by thanos1983 (Parson) on Jul 06, 2015 at 14:53 UTC |