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