Skip to content

Commit

Permalink
define Test::More minimal version (subtest support)
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-mixas committed Dec 10, 2019
1 parent ac9b88c commit 41f1ec6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -21,7 +21,7 @@ WriteMakefile(
'Data::Dumper' => 0,
'JSON::PP' => 0, # required by YAML::XS
'Test::File::Contents' => 0.23,
'Test::More' => 0,
'Test::More' => 0.94, # subtest support
'YAML::XS' => 0, # optional (lazy loaded)
},
EXE_FILES => [
Expand Down
2 changes: 1 addition & 1 deletion lib/App/NDTools/Test.pm
Expand Up @@ -8,7 +8,7 @@ use Capture::Tiny qw(capture);
use Cwd qw(abs_path);
use Data::Dumper;
use Scalar::Util qw(blessed);
use Test::More;
use Test::More 0.94;

BEGIN {
# relative path will be incorrect when `cd t_dir` used
Expand Down

0 comments on commit 41f1ec6

Please sign in to comment.