Codebase list libtest-reporter-perl / 7a4e9c6
cleanup xt and remove MANIFEST David Golden 15 years ago
5 changed file(s) with 22 addition(s) and 44 deletion(s). Raw diff Collapse all Expand all
+0
-22
MANIFEST less more
0 bin/cpantest
1 Changes
2 COPYING
3 INSTALL
4 lib/Test/Reporter.pm
5 lib/Test/Reporter/Transport.pm
6 lib/Test/Reporter/Transport/File.pm
7 lib/Test/Reporter/Transport/HTTPGateway.pm
8 lib/Test/Reporter/Transport/Mail/Send.pm
9 lib/Test/Reporter/Transport/Net/SMTP.pm
10 lib/Test/Reporter/Transport/Net/SMTP/TLS.pm
11 Makefile.PL
12 MANIFEST
13 MANIFEST.SKIP
14 README
15 t/1-reporter.t
16 t/2-http-transport.t
17 t/3-file-transport.t
18 t/4-net-smtp-transport.t
19 t/5-net-smtp-tls-transport.t
20 t/98-pod.t
21 t/99-pod_coverage.t
+0
-8
xt/98-pod.t less more
0 use Test::More;
1 my $min_tp = 1.22;
2 eval "use Test::Pod $min_tp";
3 plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
4
5 all_pod_files_ok();
6 __END__
7 use Test::Pod; # Fake CPANTS
+0
-14
xt/99-pod_coverage.t less more
0 use Test::More;
1 my $min_tpc = 1.08;
2 eval "use Test::Pod::Coverage $min_tpc";
3 plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage"
4 if $@;
5
6 my $min_pc = 0.17;
7 eval "use Pod::Coverage $min_pc";
8 plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
9 if $@;
10
11 all_pod_coverage_ok();
12 __END__
13 use Test::Pod::Coverage; # Fake CPANTS
0 use Test::More;
1 my $min_tpc = 1.08;
2 eval "use Test::Pod::Coverage $min_tpc";
3 plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage"
4 if $@;
5
6 my $min_pc = 0.17;
7 eval "use Pod::Coverage $min_pc";
8 plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
9 if $@;
10
11 all_pod_coverage_ok();
12 __END__
13 use Test::Pod::Coverage; # Fake CPANTS
0 use Test::More;
1 my $min_tp = 1.22;
2 eval "use Test::Pod $min_tp";
3 plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
4
5 all_pod_files_ok();
6 __END__
7 use Test::Pod; # Fake CPANTS