summaryrefslogtreecommitdiffstats
path: root/t/lib/06/Bar/Conflicts.pm
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/06/Bar/Conflicts.pm')
-rw-r--r--t/lib/06/Bar/Conflicts.pm21
1 files changed, 21 insertions, 0 deletions
diff --git a/t/lib/06/Bar/Conflicts.pm b/t/lib/06/Bar/Conflicts.pm
new file mode 100644
index 0000000..ce47d43
--- /dev/null
+++ b/t/lib/06/Bar/Conflicts.pm
@@ -0,0 +1,21 @@
+package Bar::Conflicts;
+use strict;
+use warnings;
+
+use Dist::CheckConflicts
+ -conflicts => {
+ 'Bar::Foo' => 0.01,
+ 'Bar::Foo::Good' => 0.01,
+ 'Bar::Foo::Bad' => 0.01,
+ 'Bar::Bar' => 0.01,
+ 'Bar::Bar::Good' => 0.01,
+ 'Bar::Bar::Bad' => 0.01,
+ 'Bar::Baz' => 0.01,
+ 'Bar::Baz::Good' => 0.01,
+ 'Bar::Baz::Bad' => 0.01,
+ 'Bar::Quux' => 0.01,
+ 'Bar::Quux::Good' => 0.01,
+ 'Bar::Quux::Bad' => 0.01,
+ };
+
+1;