File: zzz-check-breaks.t

package info (click to toggle)
libdatetime-locale-perl 1%3A1.11-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 13,948 kB
  • ctags: 125
  • sloc: perl: 1,700; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 997 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
use strict;
use warnings;

# this test was generated with Dist::Zilla::Plugin::Test::CheckBreaks 0.017

use Test::More tests => 1;

SKIP: {
    eval 'require DateTime::Locale::Conflicts; DateTime::Locale::Conflicts->check_conflicts';
    skip('no DateTime::Locale::Conflicts module found', 1) if not $INC{'DateTime/Locale/Conflicts.pm'};

    diag $@ if $@;
    pass 'conflicts checked via DateTime::Locale::Conflicts';
}

# this data duplicates x_breaks in META.json
my $breaks = {
  "DateTime::Format::Strptime" => "<= 1.1000"
};

use CPAN::Meta::Requirements;
use CPAN::Meta::Check 0.011;

my $reqs = CPAN::Meta::Requirements->new;
$reqs->add_string_requirement($_, $breaks->{$_}) foreach keys %$breaks;

our $result = CPAN::Meta::Check::check_requirements($reqs, 'conflicts');

if (my @breaks = grep { defined $result->{$_} } keys %$result)
{
    diag 'Breakages found with DateTime-Locale:';
    diag "$result->{$_}" for sort @breaks;
    diag "\n", 'You should now update these modules!';
}