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

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

1;