Skip to content
Snippets Groups Projects
Commit f92562ad authored by Andrew Dunstan's avatar Andrew Dunstan
Browse files

Require sufficiently modern version of Test::More for TAP tests

Ancient versions of Test::More don't support the note() function used in
some TAP tests, so we require the minimum version of the module that
does.
parent 5041cdf2
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,8 @@ use File::Spec; ...@@ -17,7 +17,8 @@ use File::Spec;
use File::Temp (); use File::Temp ();
use IPC::Run; use IPC::Run;
use SimpleTee; use SimpleTee;
use Test::More; # specify a recent enough version of Test::More to support the note() function
use Test::More 0.82;
our @EXPORT = qw( our @EXPORT = qw(
generate_ascii_string generate_ascii_string
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment