summaryrefslogtreecommitdiffstats
path: root/t/lib/01/Foo/Conflicts.pm
blob: 0d9d7efd00041945915a521f6668ded5b6494062 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package Foo::Conflicts;
use strict;
use warnings;

use Dist::CheckConflicts
    -conflicts => {
        'Foo::Thing'      => 0.01,
        'Foo::Thing::Sub' => 0.05,
    };

1;