summaryrefslogtreecommitdiffstats
path: root/external/perl/Text-Template-1.56/t/author-signature.t
diff options
context:
space:
mode:
Diffstat (limited to 'external/perl/Text-Template-1.56/t/author-signature.t')
-rw-r--r--external/perl/Text-Template-1.56/t/author-signature.t21
1 files changed, 21 insertions, 0 deletions
diff --git a/external/perl/Text-Template-1.56/t/author-signature.t b/external/perl/Text-Template-1.56/t/author-signature.t
new file mode 100644
index 0000000000..c81a09395c
--- /dev/null
+++ b/external/perl/Text-Template-1.56/t/author-signature.t
@@ -0,0 +1,21 @@
+#!perl -w
+
+BEGIN {
+ unless ($ENV{AUTHOR_TESTING}) {
+ print qq{1..0 # SKIP these tests are for testing by the author\n};
+ exit
+ }
+}
+
+# This file was automatically generated by Dist::Zilla::Plugin::AuthorSignatureTest
+
+use strict;
+use warnings;
+use Test::More;
+
+unless (eval { require Test::Signature; 1 }) {
+ plan skip_all => 'Test::Signature is required for this test';
+}
+
+Test::Signature::signature_ok();
+done_testing;