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

use Dist::CheckConflicts
    -conflicts => {
        'Bar::Local' => 0.02,
    },
    -also => [
        'Bar::Conflicts2',
    ];

1;