summaryrefslogtreecommitdiff
path: root/t/author-portability.t
diff options
context:
space:
mode:
Diffstat (limited to 't/author-portability.t')
-rw-r--r--t/author-portability.t18
1 files changed, 18 insertions, 0 deletions
diff --git a/t/author-portability.t b/t/author-portability.t
new file mode 100644
index 0000000..b6c3147
--- /dev/null
+++ b/t/author-portability.t
@@ -0,0 +1,18 @@
+
+BEGIN {
+ unless ($ENV{AUTHOR_TESTING}) {
+ print qq{1..0 # SKIP these tests are for testing by the author\n};
+ exit
+ }
+}
+
+use strict;
+use warnings;
+
+use Test::More;
+
+eval 'use Test::Portability::Files';
+plan skip_all => 'Test::Portability::Files required for testing portability'
+ if $@;
+
+run_tests();