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