samples/try.pl
t/10-base.t
t/11-existing.t
+t/91-pod.t
+t/92-pod-coverage.t
+t/95-portability-files.t
+t/99-kwalitee.t
t/Sub-Op-Test/Makefile.PL
t/Sub-Op-Test/Test.xs
t/Sub-Op-Test/lib/Sub/Op/Test.pm
--- /dev/null
+#!perl -T
+
+use strict;
+use warnings;
+
+use Test::More;
+
+eval "use Test::Pod 1.14";
+plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
+all_pod_files_ok();
--- /dev/null
+#!perl -T
+
+use strict;
+use warnings;
+
+use Test::More;
+
+eval "use Test::Pod::Coverage 1.04";
+plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
+all_pod_coverage_ok({
+ also_private => [
+ qr/^_/,
+ qr/^CLONE(_SKIP)?$/,
+ 'dl_load_flags',
+ ],
+});
--- /dev/null
+#!perl -T
+
+use strict;
+use warnings;
+
+use Test::More;
+
+eval "use Test::Portability::Files";
+plan skip_all => "Test::Portability::Files required for testing filenames portability" if $@;
+run_tests();
--- /dev/null
+#!perl
+
+use strict;
+use warnings;
+
+use Test::More;
+
+eval "use Test::Kwalitee 1.01 ()";
+plan(skip_all => 'Test::Kwalitee 1.01 not installed') if $@;
+
+SKIP: {
+ eval { Test::Kwalitee->import(tests => [ '-use_strict' ]); };
+ if (my $err = $@) {
+ 1 while chomp $err;
+ require Test::Builder;
+ my $Test = Test::Builder->new;
+ my $plan = $Test->has_plan;
+ $Test->skip_all($err) if not defined $plan or $plan eq 'no_plan';
+ skip $err => $plan - $Test->current_test;
+ }
+}