summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--dist.ini1
-rw-r--r--t/anon-basic.t6
-rw-r--r--t/anon.t6
3 files changed, 10 insertions, 3 deletions
diff --git a/dist.ini b/dist.ini
index c01dae9..cbe1521 100644
--- a/dist.ini
+++ b/dist.ini
@@ -12,7 +12,6 @@ repository = github
skip = ^Variable::Magic$
[Prereqs / DevelopRequires]
-Package::Anon = 0
Test::LeakTrace = 0
; we maintain a Makefile.PL in the repository to be able to work without dzil,
diff --git a/t/anon-basic.t b/t/anon-basic.t
index 32f5c9c..c3ef3c4 100644
--- a/t/anon-basic.t
+++ b/t/anon-basic.t
@@ -5,7 +5,11 @@ use lib 't/lib';
use Test::More;
use Test::Fatal;
-use Test::Requires 'Package::Anon';
+BEGIN {
+ if (!eval { require Package::Anon; 1 }) {
+ plan skip_all => "Package::Anon is required for this test";
+ }
+}
use Package::Stash;
use Symbol;
diff --git a/t/anon.t b/t/anon.t
index 8b7f7aa..0e37604 100644
--- a/t/anon.t
+++ b/t/anon.t
@@ -5,7 +5,11 @@ use Test::More;
use Test::Fatal;
use lib 't/lib';
-use Test::Requires 'Package::Anon';
+BEGIN {
+ if (!eval { require Package::Anon; 1 }) {
+ plan skip_all => "Package::Anon is required for this test";
+ }
+}
use Package::Stash;
use Symbol;