summaryrefslogtreecommitdiffstats
path: root/t/lib/06/Foo
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-01-13 13:41:47 -0600
committerJesse Luehrs <doy@tozt.net>2011-01-13 13:41:47 -0600
commit197e3362e92f58cba6ce3d60e1b12ca0ed3c69ce (patch)
tree39232b57a38ecbd9f1bf4c0336eae5bb3036f7d8 /t/lib/06/Foo
parentb7e4e8e25e10d97446650b2c2298088e093e6890 (diff)
downloaddist-checkconflicts-197e3362e92f58cba6ce3d60e1b12ca0ed3c69ce.tar.gz
dist-checkconflicts-197e3362e92f58cba6ce3d60e1b12ca0ed3c69ce.zip
more in depth tests for runtime warnings
Diffstat (limited to 't/lib/06/Foo')
-rw-r--r--t/lib/06/Foo/Bar.pm7
-rw-r--r--t/lib/06/Foo/Baz.pm7
-rw-r--r--t/lib/06/Foo/Conflicts.pm13
-rw-r--r--t/lib/06/Foo/Foo.pm7
-rw-r--r--t/lib/06/Foo/Quux.pm7
5 files changed, 41 insertions, 0 deletions
diff --git a/t/lib/06/Foo/Bar.pm b/t/lib/06/Foo/Bar.pm
new file mode 100644
index 0000000..c4c6af8
--- /dev/null
+++ b/t/lib/06/Foo/Bar.pm
@@ -0,0 +1,7 @@
+package Foo::Bar;
+use strict;
+use warnings;
+
+our $VERSION = 0.01;
+
+1;
diff --git a/t/lib/06/Foo/Baz.pm b/t/lib/06/Foo/Baz.pm
new file mode 100644
index 0000000..665f3b5
--- /dev/null
+++ b/t/lib/06/Foo/Baz.pm
@@ -0,0 +1,7 @@
+package Foo::Baz;
+use strict;
+use warnings;
+
+our $VERSION = 0.02;
+
+1;
diff --git a/t/lib/06/Foo/Conflicts.pm b/t/lib/06/Foo/Conflicts.pm
new file mode 100644
index 0000000..15e50e7
--- /dev/null
+++ b/t/lib/06/Foo/Conflicts.pm
@@ -0,0 +1,13 @@
+package Foo::Conflicts;
+use strict;
+use warnings;
+
+use Dist::CheckConflicts
+ -conflicts => {
+ 'Foo::Foo' => 0.01,
+ 'Foo::Bar' => 0.01,
+ 'Foo::Baz' => 0.01,
+ 'Foo::Quux' => 0.01,
+ };
+
+1;
diff --git a/t/lib/06/Foo/Foo.pm b/t/lib/06/Foo/Foo.pm
new file mode 100644
index 0000000..ca6c28e
--- /dev/null
+++ b/t/lib/06/Foo/Foo.pm
@@ -0,0 +1,7 @@
+package Foo::Foo;
+use strict;
+use warnings;
+
+our $VERSION = 0.01;
+
+1;
diff --git a/t/lib/06/Foo/Quux.pm b/t/lib/06/Foo/Quux.pm
new file mode 100644
index 0000000..f813ae3
--- /dev/null
+++ b/t/lib/06/Foo/Quux.pm
@@ -0,0 +1,7 @@
+package Foo::Quux;
+use strict;
+use warnings;
+
+our $VERSION = 0.02;
+
+1;