From 147e9de47ccda2345942212fae142cc33932d101 Mon Sep 17 00:00:00 2001 From: Marcus Ramberg Date: Thu, 30 Sep 2004 12:52:28 +0000 Subject: [PATCH] renamed tests added pod tests and pod::coverage tests git-svn-id: http://svn.maypole.perl.org/Maypole/trunk@214 48953598-375a-da11-a14b-00016c27c3ee --- t/{1.t => 01basics.t} | 0 t/02pod.t | 9 +++++++++ t/03podcoverage.t | 9 +++++++++ 3 files changed, 18 insertions(+) rename t/{1.t => 01basics.t} (100%) create mode 100644 t/02pod.t create mode 100644 t/03podcoverage.t diff --git a/t/1.t b/t/01basics.t similarity index 100% rename from t/1.t rename to t/01basics.t diff --git a/t/02pod.t b/t/02pod.t new file mode 100644 index 0000000..0f0480b --- /dev/null +++ b/t/02pod.t @@ -0,0 +1,9 @@ +#!/usr/bin/perl -w + +use strict; +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(); + diff --git a/t/03podcoverage.t b/t/03podcoverage.t new file mode 100644 index 0000000..7714e24 --- /dev/null +++ b/t/03podcoverage.t @@ -0,0 +1,9 @@ +#!/usr/bin/perl -w + +use strict; +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(); + -- 2.39.2