summaryrefslogtreecommitdiffstats
path: root/t/lib/runtime/Bar
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2013-07-08 17:20:23 -0400
committerJesse Luehrs <doy@tozt.net>2013-07-08 17:25:39 -0400
commit04a6fd13f7ea3a45881d6e75ea1dffba38a999fd (patch)
treeb275e3345e05514fea8264c82a82b8ce0973170f /t/lib/runtime/Bar
parent3e4a621b8dbe1a03d3bfc8c8cac349112d987b7c (diff)
downloaddist-checkconflicts-04a6fd13f7ea3a45881d6e75ea1dffba38a999fd.tar.gz
dist-checkconflicts-04a6fd13f7ea3a45881d6e75ea1dffba38a999fd.zip
remove test numbers
Diffstat (limited to 't/lib/runtime/Bar')
-rw-r--r--t/lib/runtime/Bar/Bar.pm18
-rw-r--r--t/lib/runtime/Bar/Bar/Bad.pm7
-rw-r--r--t/lib/runtime/Bar/Bar/Good.pm7
-rw-r--r--t/lib/runtime/Bar/Baz.pm18
-rw-r--r--t/lib/runtime/Bar/Baz/Bad.pm7
-rw-r--r--t/lib/runtime/Bar/Baz/Good.pm7
-rw-r--r--t/lib/runtime/Bar/Conflicts.pm22
-rw-r--r--t/lib/runtime/Bar/Foo.pm18
-rw-r--r--t/lib/runtime/Bar/Foo/Bad.pm7
-rw-r--r--t/lib/runtime/Bar/Foo/Good.pm7
-rw-r--r--t/lib/runtime/Bar/Quux.pm18
-rw-r--r--t/lib/runtime/Bar/Quux/Bad.pm7
-rw-r--r--t/lib/runtime/Bar/Quux/Good.pm7
13 files changed, 150 insertions, 0 deletions
diff --git a/t/lib/runtime/Bar/Bar.pm b/t/lib/runtime/Bar/Bar.pm
new file mode 100644
index 0000000..d532db6
--- /dev/null
+++ b/t/lib/runtime/Bar/Bar.pm
@@ -0,0 +1,18 @@
+package Bar::Bar;
+use strict;
+use warnings;
+
+use Bar::Bar::Good;
+use Bar::Bar::Bad;
+
+our $VERSION = 0.01;
+
+sub contents {
+ local $/;
+ <DATA>
+}
+
+1;
+
+__DATA__
+__DATA__ for Bar::Bar
diff --git a/t/lib/runtime/Bar/Bar/Bad.pm b/t/lib/runtime/Bar/Bar/Bad.pm
new file mode 100644
index 0000000..9a4792b
--- /dev/null
+++ b/t/lib/runtime/Bar/Bar/Bad.pm
@@ -0,0 +1,7 @@
+package Bar::Bar::Bad;
+use strict;
+use warnings;
+
+our $VERSION = 0.01;
+
+1;
diff --git a/t/lib/runtime/Bar/Bar/Good.pm b/t/lib/runtime/Bar/Bar/Good.pm
new file mode 100644
index 0000000..58e6d78
--- /dev/null
+++ b/t/lib/runtime/Bar/Bar/Good.pm
@@ -0,0 +1,7 @@
+package Bar::Bar::Good;
+use strict;
+use warnings;
+
+our $VERSION = 0.02;
+
+1;
diff --git a/t/lib/runtime/Bar/Baz.pm b/t/lib/runtime/Bar/Baz.pm
new file mode 100644
index 0000000..b4db03b
--- /dev/null
+++ b/t/lib/runtime/Bar/Baz.pm
@@ -0,0 +1,18 @@
+package Bar::Baz;
+use strict;
+use warnings;
+
+use Bar::Baz::Good;
+use Bar::Baz::Bad;
+
+our $VERSION = 0.02;
+
+sub contents {
+ local $/;
+ <DATA>
+}
+
+1;
+
+__DATA__
+__DATA__ for Bar::Baz
diff --git a/t/lib/runtime/Bar/Baz/Bad.pm b/t/lib/runtime/Bar/Baz/Bad.pm
new file mode 100644
index 0000000..c92da0e
--- /dev/null
+++ b/t/lib/runtime/Bar/Baz/Bad.pm
@@ -0,0 +1,7 @@
+package Bar::Baz::Bad;
+use strict;
+use warnings;
+
+our $VERSION = 0.01;
+
+1;
diff --git a/t/lib/runtime/Bar/Baz/Good.pm b/t/lib/runtime/Bar/Baz/Good.pm
new file mode 100644
index 0000000..2205717
--- /dev/null
+++ b/t/lib/runtime/Bar/Baz/Good.pm
@@ -0,0 +1,7 @@
+package Bar::Baz::Good;
+use strict;
+use warnings;
+
+our $VERSION = 0.02;
+
+1;
diff --git a/t/lib/runtime/Bar/Conflicts.pm b/t/lib/runtime/Bar/Conflicts.pm
new file mode 100644
index 0000000..c9c6f3d
--- /dev/null
+++ b/t/lib/runtime/Bar/Conflicts.pm
@@ -0,0 +1,22 @@
+package Bar::Conflicts;
+use strict;
+use warnings;
+
+use Dist::CheckConflicts
+ ':runtime',
+ -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;
diff --git a/t/lib/runtime/Bar/Foo.pm b/t/lib/runtime/Bar/Foo.pm
new file mode 100644
index 0000000..99341ac
--- /dev/null
+++ b/t/lib/runtime/Bar/Foo.pm
@@ -0,0 +1,18 @@
+package Bar::Foo;
+use strict;
+use warnings;
+
+use Bar::Foo::Good;
+use Bar::Foo::Bad;
+
+our $VERSION = 0.01;
+
+sub contents {
+ local $/;
+ <DATA>
+}
+
+1;
+
+__DATA__
+__DATA__ for Bar::Foo
diff --git a/t/lib/runtime/Bar/Foo/Bad.pm b/t/lib/runtime/Bar/Foo/Bad.pm
new file mode 100644
index 0000000..d4a58d3
--- /dev/null
+++ b/t/lib/runtime/Bar/Foo/Bad.pm
@@ -0,0 +1,7 @@
+package Bar::Foo::Bad;
+use strict;
+use warnings;
+
+our $VERSION = 0.01;
+
+1;
diff --git a/t/lib/runtime/Bar/Foo/Good.pm b/t/lib/runtime/Bar/Foo/Good.pm
new file mode 100644
index 0000000..f5d8b73
--- /dev/null
+++ b/t/lib/runtime/Bar/Foo/Good.pm
@@ -0,0 +1,7 @@
+package Bar::Foo::Good;
+use strict;
+use warnings;
+
+our $VERSION = 0.02;
+
+1;
diff --git a/t/lib/runtime/Bar/Quux.pm b/t/lib/runtime/Bar/Quux.pm
new file mode 100644
index 0000000..1ec6f35
--- /dev/null
+++ b/t/lib/runtime/Bar/Quux.pm
@@ -0,0 +1,18 @@
+package Bar::Quux;
+use strict;
+use warnings;
+
+use Bar::Quux::Good;
+use Bar::Quux::Bad;
+
+our $VERSION = 0.02;
+
+sub contents {
+ local $/;
+ <DATA>
+}
+
+1;
+
+__DATA__
+__DATA__ for Bar::Quux
diff --git a/t/lib/runtime/Bar/Quux/Bad.pm b/t/lib/runtime/Bar/Quux/Bad.pm
new file mode 100644
index 0000000..2238323
--- /dev/null
+++ b/t/lib/runtime/Bar/Quux/Bad.pm
@@ -0,0 +1,7 @@
+package Bar::Quux::Bad;
+use strict;
+use warnings;
+
+our $VERSION = 0.01;
+
+1;
diff --git a/t/lib/runtime/Bar/Quux/Good.pm b/t/lib/runtime/Bar/Quux/Good.pm
new file mode 100644
index 0000000..8692c2c
--- /dev/null
+++ b/t/lib/runtime/Bar/Quux/Good.pm
@@ -0,0 +1,7 @@
+package Bar::Quux::Good;
+use strict;
+use warnings;
+
+our $VERSION = 0.02;
+
+1;