Acme-CPANAuthors-Booking

 view release on metacpan or  search on metacpan

t/000_basic.t  view on Meta::CPAN


use 5.006;

use strict;
use warnings;
no  warnings 'syntax';

use Test::More 0.88;
use Acme::CPANAuthors;

our $r = eval "require Test::NoWarnings; 1";

BEGIN {
    use_ok ('Acme::CPANAuthors::Booking') or
        BAIL_OUT ("Loading of 'Acme-CPANAuthors-Booking' failed");
}

ok defined $Acme::CPANAuthors::Booking::VERSION, "VERSION is set";

my $authors = Acme::CPANAuthors -> new ('Booking');

t/950_pod.t  view on Meta::CPAN


use Test::More;

use strict;
use warnings;
no  warnings 'syntax';

plan skip_all => "These tests are for release candidate testing"
    if !$ENV{RELEASE_TESTING};

eval "use Test::Pod 1.00; 1" or
      plan skip_all => "Test::Pod required for testing POD";

all_pod_files_ok ();


__END__

t/960_pod_coverage.t  view on Meta::CPAN


use Test::More;

use strict;
use warnings;
no  warnings 'syntax';

plan skip_all => "These tests are for release candidate testing"
    if !$ENV{RELEASE_TESTING};

eval "use Test::Pod::Coverage 1.00; 1" or
      plan skip_all => "Test::Pod::Coverage required for testing POD coverage";

all_pod_coverage_ok ({private => [qr /^/]});


__END__



( run in 0.742 second using v1.01-cache-2.11-cpan-5a3173703d6 )