summaryrefslogtreecommitdiffstats
path: root/t/lib/02/Foo/Conflicts
diff options
context:
space:
mode:
Diffstat (limited to 't/lib/02/Foo/Conflicts')
-rw-r--r--t/lib/02/Foo/Conflicts/Bad.pm12
-rw-r--r--t/lib/02/Foo/Conflicts/Good.pm12
2 files changed, 24 insertions, 0 deletions
diff --git a/t/lib/02/Foo/Conflicts/Bad.pm b/t/lib/02/Foo/Conflicts/Bad.pm
new file mode 100644
index 0000000..1cbf30f
--- /dev/null
+++ b/t/lib/02/Foo/Conflicts/Bad.pm
@@ -0,0 +1,12 @@
+package Foo::Conflicts::Bad;
+use strict;
+use warnings;
+
+use Dist::CheckConflicts
+ -conflicts => {
+ 'Foo' => 0.03,
+ 'Foo::Two' => 0.02,
+ 'Foo::Three' => 0.01,
+ };
+
+1;
diff --git a/t/lib/02/Foo/Conflicts/Good.pm b/t/lib/02/Foo/Conflicts/Good.pm
new file mode 100644
index 0000000..f40a955
--- /dev/null
+++ b/t/lib/02/Foo/Conflicts/Good.pm
@@ -0,0 +1,12 @@
+package Foo::Conflicts::Good;
+use strict;
+use warnings;
+
+use Dist::CheckConflicts
+ -conflicts => {
+ 'Foo' => 0.01,
+ 'Foo::Two' => 0.01,
+ 'Foo::Three' => 0.01,
+ };
+
+1;