The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;
no warnings qw/ uninitialized /;

use Test::More;

$ENV{ TEST_AUTHOR } =~ /Pod::Manual/ and eval q{
    use Test::Signature;
    goto RUN_TESTS;
};

plan skip_all => $@
    ? 'Test::Signature not installed; skipping signature testing'
    :   q{Set TEST_AUTHOR to 'Pod::Manual' in your environment }
        . q{ to enable these tests};

RUN_TESTS:

plan tests => 1;

signature_ok();