Skip Menu |

This queue is for tickets about the List-Uniq CPAN distribution.

Report information
The Basics
Id: 113952
Status: open
Priority: 0/
Queue: List-Uniq

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.20
Fixed in: (no value)



Subject: t/04_breakpoints.t fails
On Sun Apr 24 09:43:47 2016, SREZIC wrote: Show quoted text
> See subject. Sample fail report: > http://www.cpantesters.org/cpan/report/dde099ba-c01d-11e5-870b- > b1ca0259f3db
The attached patch fixes this. The issue is due to changes in the Test::NoBreakpoints API
Subject: List-Uniq-correct-syntax-for-newer-Test-NoBreakpoints.patch
--- 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