From: Karen Etheridge Date: Mon, 1 Feb 2016 01:39:50 +0000 (-0800) Subject: fix Test::More prereq for done_testing X-Git-Tag: v1.003028~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-REPL.git;a=commitdiff_plain;h=d0a1b71685d578043ac7b347052a447b2a172cb0 fix Test::More prereq for done_testing --- diff --git a/t/load_core.t b/t/load_core.t index 1cd69a2..ce91d92 100644 --- a/t/load_core.t +++ b/t/load_core.t @@ -1,7 +1,7 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use if $ENV{AUTHOR_TESTING}, 'Test::Warnings'; use Module::Runtime 'use_module'; use Test::Fatal; diff --git a/t/load_plugins.t b/t/load_plugins.t index 40b11c7..a2c0e0e 100644 --- a/t/load_plugins.t +++ b/t/load_plugins.t @@ -2,7 +2,7 @@ use strict; use warnings; -use Test::More; +use Test::More 0.88; use if $ENV{AUTHOR_TESTING}, 'Test::Warnings'; use_ok('Devel::REPL');