summaryrefslogtreecommitdiffstats
path: root/t/lib/dist/Foo/Conflicts/Bad.pm
blob: 22905ee5d57833c845dab9d22c1e31ea4e201f0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
package Foo::Conflicts::Bad;
use strict;
use warnings;

use Dist::CheckConflicts
    -dist => 'Foo',
    -conflicts => {
        'Foo'        => 0.03,
        'Foo::Two'   => 0.02,
        'Foo::Three' => 0.01,
    };

1;