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

use Dist::CheckConflicts
    ':runtime',
    -conflicts => {
        'Foo::Foo'  => 0.01,
        'Foo::Bar'  => 0.01,
        'Foo::Baz'  => 0.01,
        'Foo::Quux' => 0.01,
    };

1;