summaryrefslogtreecommitdiffstats
path: root/t/try/when.t
diff options
context:
space:
mode:
Diffstat (limited to 't/try/when.t')
-rw-r--r--t/try/when.t6
1 files changed, 5 insertions, 1 deletions
diff --git a/t/try/when.t b/t/try/when.t
index 96754aa..749ad52 100644
--- a/t/try/when.t
+++ b/t/try/when.t
@@ -5,7 +5,11 @@ use Test::More;
use lib 't/try/lib';
use 5.014;
-use Test::Requires 'Try::Tiny';
+BEGIN {
+ if (!eval { require Try::Tiny }) {
+ plan skip_all => "This test requires Try::Tiny";
+ }
+}
no if $] >= 5.018, warnings => 'experimental::smartmatch';