On Sun Apr 24 09:43:47 2016, SREZIC wrote:
Show quoted text
The attached patch fixes this. The issue is due to changes in the Test::NoBreakpoints API
--- List-Uniq-0.20-0/t/04_breakpoints.t 2010-06-18 11:25:26.000000000 -0400
+++ List-Uniq-0.20-1/t/04_breakpoints.t 2020-11-07 21:59:26.722255393 -0500
@@ -4,12 +4,13 @@
use strict;
use warnings;
-
use Test::More;
-eval "use Test::NoBreakpoints 0.10";
-plan skip_all => "Test::NoBreakpoints 0.10 required for testing" if $@;
+use Test::NoBreakpoints;
+
+plan skip_all => "Test::NoBreakpoints 0.10 or better required for testing" if $@;
plan 'no_plan';
-all_files_no_brkpts_ok();
+
+all_files_no_breakpoints_ok();
#
# EOF