File Coverage

t/author-signature.t
Criterion Covered Total %
statement 3 3 100.0
branch 1 2 50.0
condition n/a
subroutine 1 1 100.0
pod n/a
total 5 6 83.3


line stmt bran cond sub pod time code
1             #!perl -w
2              
3             BEGIN {
4 1 50   1   7 unless ($ENV{AUTHOR_TESTING}) {
5 1         11 print qq{1..0 # SKIP these tests are for testing by the author\n};
6             exit
7 1         915 }
8             }
9              
10             # This file was automatically generated by Dist::Zilla::Plugin::AuthorSignatureTest
11              
12             use strict;
13             use warnings;
14             use Test::More;
15              
16             unless (eval { require Test::Signature; 1 }) {
17             plan skip_all => 'Test::Signature is required for this test';
18             }
19              
20             Test::Signature::signature_ok();
21             done_testing;