fix skipping when Sub::Exporter isn't installed
Dagfinn Ilmari Mannsåker [Thu, 9 Aug 2012 12:08:50 +0000 (13:08 +0100)]
Changes
t/sex.t

diff --git a/Changes b/Changes
index a78bebf..16f1af4 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,7 @@
 Revision history for {{$dist->name}}
 
 {{$NEXT}}
+  - fix skipping when Sub::Exporter isn't installed
 
 0.001003  2012-08-01 12:47:28 America/Chicago
   - remove warning if there are no defaults
diff --git a/t/sex.t b/t/sex.t
index 8a63f89..103b0d1 100644 (file)
--- a/t/sex.t
+++ b/t/sex.t
@@ -3,8 +3,10 @@ use strict;
 use warnings;
 
 use Test::More;
-plan skip_all => 'Sub::Exporter not installed'
-   unless eval { require Sub::Exporter };
+BEGIN {
+    plan skip_all => 'Sub::Exporter not installed'
+        unless eval { require Sub::Exporter };
+}
 
 use List::Util 'first';
 use lib 't/lib';