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

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

1;