aboutsummaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-10-06 13:34:17 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-10-06 13:34:17 +1300
commit9d7feb93cef5141bfef77d74a4a02fdb0de1a9a1 (patch)
tree2f9e2717a8ec029678e592f6e9f294bcb39960f3 /t
parentSet up README (diff)
downloadMusic-Lyrics-LRC-9d7feb93cef5141bfef77d74a4a02fdb0de1a9a1.tar.gz
Music-Lyrics-LRC-9d7feb93cef5141bfef77d74a4a02fdb0de1a9a1.zip
First version for personal cgit but not CPAN yetv0.01
Diffstat (limited to 't')
-rw-r--r--t/00-load.t13
-rw-r--r--t/manifest.t15
-rw-r--r--t/pod-coverage.t24
-rw-r--r--t/pod.t16
4 files changed, 0 insertions, 68 deletions
diff --git a/t/00-load.t b/t/00-load.t
deleted file mode 100644
index 65a62de..0000000
--- a/t/00-load.t
+++ /dev/null
@@ -1,13 +0,0 @@
-#!perl -T
-use 5.006;
-use strict;
-use warnings;
-use Test::More;
-
-plan tests => 1;
-
-BEGIN {
- use_ok( 'Music::Lyrics::LRC' ) || print "Bail out!\n";
-}
-
-diag( "Testing Music::Lyrics::LRC $Music::Lyrics::LRC::VERSION, Perl $], $^X" );
diff --git a/t/manifest.t b/t/manifest.t
deleted file mode 100644
index e0b558e..0000000
--- a/t/manifest.t
+++ /dev/null
@@ -1,15 +0,0 @@
-#!perl -T
-use 5.006;
-use strict;
-use warnings;
-use Test::More;
-
-unless ( $ENV{RELEASE_TESTING} ) {
- plan( skip_all => "Author tests not required for installation" );
-}
-
-my $min_tcm = 0.9;
-eval "use Test::CheckManifest $min_tcm";
-plan skip_all => "Test::CheckManifest $min_tcm required" if $@;
-
-ok_manifest();
diff --git a/t/pod-coverage.t b/t/pod-coverage.t
deleted file mode 100644
index f5728a5..0000000
--- a/t/pod-coverage.t
+++ /dev/null
@@ -1,24 +0,0 @@
-#!perl -T
-use 5.006;
-use strict;
-use warnings;
-use Test::More;
-
-unless ( $ENV{RELEASE_TESTING} ) {
- plan( skip_all => "Author tests not required for installation" );
-}
-
-# Ensure a recent version of Test::Pod::Coverage
-my $min_tpc = 1.08;
-eval "use Test::Pod::Coverage $min_tpc";
-plan skip_all => "Test::Pod::Coverage $min_tpc required for testing POD coverage"
- if $@;
-
-# Test::Pod::Coverage doesn't require a minimum Pod::Coverage version,
-# but older versions don't recognize some common documentation styles
-my $min_pc = 0.18;
-eval "use Pod::Coverage $min_pc";
-plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
- if $@;
-
-all_pod_coverage_ok();
diff --git a/t/pod.t b/t/pod.t
deleted file mode 100644
index 4d3a0ce..0000000
--- a/t/pod.t
+++ /dev/null
@@ -1,16 +0,0 @@
-#!perl -T
-use 5.006;
-use strict;
-use warnings;
-use Test::More;
-
-unless ( $ENV{RELEASE_TESTING} ) {
- plan( skip_all => "Author tests not required for installation" );
-}
-
-# Ensure a recent version of Test::Pod
-my $min_tp = 1.22;
-eval "use Test::Pod $min_tp";
-plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
-
-all_pod_files_ok();