xref: /freebsd/crypto/openssl/external/perl/Text-Template-1.56/t/author-signature.t (revision 1edb7116f450c1a1793f2fd25f6bdc16735ef888)
1#!perl -w
2
3BEGIN {
4  unless ($ENV{AUTHOR_TESTING}) {
5    print qq{1..0 # SKIP these tests are for testing by the author\n};
6    exit
7  }
8}
9
10# This file was automatically generated by Dist::Zilla::Plugin::AuthorSignatureTest
11
12use strict;
13use warnings;
14use Test::More;
15
16unless (eval { require Test::Signature; 1 }) {
17    plan skip_all => 'Test::Signature is required for this test';
18}
19
20Test::Signature::signature_ok();
21done_testing;
22