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

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

1;