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

use Dist::CheckConflicts
    -dist => 'Bar',
    -conflicts => {
        'Bar' => '0.01',
    },
    -also => [
        'Bar::Conflicts::Good2',
    ];

1;