summaryrefslogtreecommitdiffstats
path: root/t/lib/02
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/02
parent3e4a621b8dbe1a03d3bfc8c8cac349112d987b7c (diff)
downloaddist-checkconflicts-04a6fd13f7ea3a45881d6e75ea1dffba38a999fd.tar.gz
dist-checkconflicts-04a6fd13f7ea3a45881d6e75ea1dffba38a999fd.zip
remove test numbers
Diffstat (limited to 't/lib/02')
-rw-r--r--t/lib/02/Bar.pm7
-rw-r--r--t/lib/02/Bar/Conflicts/Bad.pm13
-rw-r--r--t/lib/02/Bar/Conflicts/Bad2.pm13
-rw-r--r--t/lib/02/Bar/Conflicts/Bad3.pm10
-rw-r--r--t/lib/02/Bar/Conflicts/Good.pm13
-rw-r--r--t/lib/02/Bar/Conflicts/Good2.pm13
-rw-r--r--t/lib/02/Bar/Conflicts/Good3.pm10
-rw-r--r--t/lib/02/Bar/Three.pm7
-rw-r--r--t/lib/02/Bar/Two.pm7
-rw-r--r--t/lib/02/Broken.pm3
-rw-r--r--t/lib/02/Foo.pm7
-rw-r--r--t/lib/02/Foo/Conflicts/Bad.pm12
-rw-r--r--t/lib/02/Foo/Conflicts/Broken.pm11
-rw-r--r--t/lib/02/Foo/Conflicts/Good.pm13
-rw-r--r--t/lib/02/Foo/Three.pm7
-rw-r--r--t/lib/02/Foo/Two.pm7
16 files changed, 0 insertions, 153 deletions
diff --git a/t/lib/02/Bar.pm b/t/lib/02/Bar.pm
deleted file mode 100644
index 0ce51ad..0000000
--- a/t/lib/02/Bar.pm
+++ /dev/null
@@ -1,7 +0,0 @@
-package Bar;
-use strict;
-use warnings;
-
-our $VERSION = 0.02;
-
-1;
diff --git a/t/lib/02/Bar/Conflicts/Bad.pm b/t/lib/02/Bar/Conflicts/Bad.pm
deleted file mode 100644
index 32a654e..0000000
--- a/t/lib/02/Bar/Conflicts/Bad.pm
+++ /dev/null
@@ -1,13 +0,0 @@
-package Bar::Conflicts::Bad;
-use strict;
-use warnings;
-
-use Dist::CheckConflicts
- -conflicts => {
- 'Bar' => '0.03',
- },
- -also => [
- 'Bar::Conflicts::Bad2',
- ];
-
-1;
diff --git a/t/lib/02/Bar/Conflicts/Bad2.pm b/t/lib/02/Bar/Conflicts/Bad2.pm
deleted file mode 100644
index 9c76862..0000000
--- a/t/lib/02/Bar/Conflicts/Bad2.pm
+++ /dev/null
@@ -1,13 +0,0 @@
-package Bar::Conflicts::Bad2;
-use strict;
-use warnings;
-
-use Dist::CheckConflicts
- -conflicts => {
- 'Bar::Two' => '0.02',
- },
- -also => [
- 'Bar::Conflicts::Bad3',
- ];
-
-1;
diff --git a/t/lib/02/Bar/Conflicts/Bad3.pm b/t/lib/02/Bar/Conflicts/Bad3.pm
deleted file mode 100644
index fb80b9e..0000000
--- a/t/lib/02/Bar/Conflicts/Bad3.pm
+++ /dev/null
@@ -1,10 +0,0 @@
-package Bar::Conflicts::Bad3;
-use strict;
-use warnings;
-
-use Dist::CheckConflicts
- -conflicts => {
- 'Bar::Three' => '0.01',
- };
-
-1;
diff --git a/t/lib/02/Bar/Conflicts/Good.pm b/t/lib/02/Bar/Conflicts/Good.pm
deleted file mode 100644
index 0f74447..0000000
--- a/t/lib/02/Bar/Conflicts/Good.pm
+++ /dev/null
@@ -1,13 +0,0 @@
-package Bar::Conflicts::Good;
-use strict;
-use warnings;
-
-use Dist::CheckConflicts
- -conflicts => {
- 'Bar' => '0.01',
- },
- -also => [
- 'Bar::Conflicts::Good2',
- ];
-
-1;
diff --git a/t/lib/02/Bar/Conflicts/Good2.pm b/t/lib/02/Bar/Conflicts/Good2.pm
deleted file mode 100644
index 8ba9fd3..0000000
--- a/t/lib/02/Bar/Conflicts/Good2.pm
+++ /dev/null
@@ -1,13 +0,0 @@
-package Bar::Conflicts::Good2;
-use strict;
-use warnings;
-
-use Dist::CheckConflicts
- -conflicts => {
- 'Bar::Two' => '0.01',
- },
- -also => [
- 'Bar::Conflicts::Good3',
- ];
-
-1;
diff --git a/t/lib/02/Bar/Conflicts/Good3.pm b/t/lib/02/Bar/Conflicts/Good3.pm
deleted file mode 100644
index 88b542e..0000000
--- a/t/lib/02/Bar/Conflicts/Good3.pm
+++ /dev/null
@@ -1,10 +0,0 @@
-package Bar::Conflicts::Good3;
-use strict;
-use warnings;
-
-use Dist::CheckConflicts
- -conflicts => {
- 'Bar::Three' => '0.01',
- };
-
-1;
diff --git a/t/lib/02/Bar/Three.pm b/t/lib/02/Bar/Three.pm
deleted file mode 100644
index 8c304fe..0000000
--- a/t/lib/02/Bar/Three.pm
+++ /dev/null
@@ -1,7 +0,0 @@
-package Bar::Three;
-use strict;
-use warnings;
-
-our $VERSION = 0.02;
-
-1;
diff --git a/t/lib/02/Bar/Two.pm b/t/lib/02/Bar/Two.pm
deleted file mode 100644
index 172ad51..0000000
--- a/t/lib/02/Bar/Two.pm
+++ /dev/null
@@ -1,7 +0,0 @@
-package Bar::Two;
-use strict;
-use warnings;
-
-our $VERSION = 0.02;
-
-1;
diff --git a/t/lib/02/Broken.pm b/t/lib/02/Broken.pm
deleted file mode 100644
index de400c3..0000000
--- a/t/lib/02/Broken.pm
+++ /dev/null
@@ -1,3 +0,0 @@
-package Broken;
-
-die 'this module is utterly broken';
diff --git a/t/lib/02/Foo.pm b/t/lib/02/Foo.pm
deleted file mode 100644
index 9660e6d..0000000
--- a/t/lib/02/Foo.pm
+++ /dev/null
@@ -1,7 +0,0 @@
-package Foo;
-use strict;
-use warnings;
-
-our $VERSION = 0.02;
-
-1;
diff --git a/t/lib/02/Foo/Conflicts/Bad.pm b/t/lib/02/Foo/Conflicts/Bad.pm
deleted file mode 100644
index 1cbf30f..0000000
--- a/t/lib/02/Foo/Conflicts/Bad.pm
+++ /dev/null
@@ -1,12 +0,0 @@
-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/Broken.pm b/t/lib/02/Foo/Conflicts/Broken.pm
deleted file mode 100644
index 87043ae..0000000
--- a/t/lib/02/Foo/Conflicts/Broken.pm
+++ /dev/null
@@ -1,11 +0,0 @@
-package Foo::Conflicts::Broken;
-use strict;
-use warnings;
-
-use Dist::CheckConflicts
- -conflicts => {
- 'Broken' => '0.03',
- 'NotInstalled' => '0.01',
- };
-
-1;
diff --git a/t/lib/02/Foo/Conflicts/Good.pm b/t/lib/02/Foo/Conflicts/Good.pm
deleted file mode 100644
index 33d15de..0000000
--- a/t/lib/02/Foo/Conflicts/Good.pm
+++ /dev/null
@@ -1,13 +0,0 @@
-package Foo::Conflicts::Good;
-use strict;
-use warnings;
-
-use Dist::CheckConflicts
- -conflicts => {
- 'Foo' => 0.01,
- 'Foo::Two' => 0.01,
- 'Foo::Three' => 0.01,
- 'NotInstalled' => '0.01',
- };
-
-1;
diff --git a/t/lib/02/Foo/Three.pm b/t/lib/02/Foo/Three.pm
deleted file mode 100644
index b180934..0000000
--- a/t/lib/02/Foo/Three.pm
+++ /dev/null
@@ -1,7 +0,0 @@
-package Foo::Three;
-use strict;
-use warnings;
-
-our $VERSION = 0.02;
-
-1;
diff --git a/t/lib/02/Foo/Two.pm b/t/lib/02/Foo/Two.pm
deleted file mode 100644
index 7a1daff..0000000
--- a/t/lib/02/Foo/Two.pm
+++ /dev/null
@@ -1,7 +0,0 @@
-package Foo::Two;
-use strict;
-use warnings;
-
-our $VERSION = 0.02;
-
-1;