author-signature.t 431 B

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