From 04a6fd13f7ea3a45881d6e75ea1dffba38a999fd Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Mon, 8 Jul 2013 17:20:23 -0400 Subject: remove test numbers --- t/lib/dist/Foo/Conflicts/Bad.pm | 13 +++++++++++++ t/lib/dist/Foo/Conflicts/Good.pm | 13 +++++++++++++ t/lib/dist/Foo/Three.pm | 7 +++++++ t/lib/dist/Foo/Two.pm | 7 +++++++ 4 files changed, 40 insertions(+) create mode 100644 t/lib/dist/Foo/Conflicts/Bad.pm create mode 100644 t/lib/dist/Foo/Conflicts/Good.pm create mode 100644 t/lib/dist/Foo/Three.pm create mode 100644 t/lib/dist/Foo/Two.pm (limited to 't/lib/dist/Foo') diff --git a/t/lib/dist/Foo/Conflicts/Bad.pm b/t/lib/dist/Foo/Conflicts/Bad.pm new file mode 100644 index 0000000..22905ee --- /dev/null +++ b/t/lib/dist/Foo/Conflicts/Bad.pm @@ -0,0 +1,13 @@ +package Foo::Conflicts::Bad; +use strict; +use warnings; + +use Dist::CheckConflicts + -dist => 'Foo', + -conflicts => { + 'Foo' => 0.03, + 'Foo::Two' => 0.02, + 'Foo::Three' => 0.01, + }; + +1; diff --git a/t/lib/dist/Foo/Conflicts/Good.pm b/t/lib/dist/Foo/Conflicts/Good.pm new file mode 100644 index 0000000..553c698 --- /dev/null +++ b/t/lib/dist/Foo/Conflicts/Good.pm @@ -0,0 +1,13 @@ +package Foo::Conflicts::Good; +use strict; +use warnings; + +use Dist::CheckConflicts + -dist => 'Foo', + -conflicts => { + 'Foo' => 0.01, + 'Foo::Two' => 0.01, + 'Foo::Three' => 0.01, + }; + +1; diff --git a/t/lib/dist/Foo/Three.pm b/t/lib/dist/Foo/Three.pm new file mode 100644 index 0000000..b180934 --- /dev/null +++ b/t/lib/dist/Foo/Three.pm @@ -0,0 +1,7 @@ +package Foo::Three; +use strict; +use warnings; + +our $VERSION = 0.02; + +1; diff --git a/t/lib/dist/Foo/Two.pm b/t/lib/dist/Foo/Two.pm new file mode 100644 index 0000000..7a1daff --- /dev/null +++ b/t/lib/dist/Foo/Two.pm @@ -0,0 +1,7 @@ +package Foo::Two; +use strict; +use warnings; + +our $VERSION = 0.02; + +1; -- cgit v1.2.3-54-g00ecf