[Bps-public-commit] template-declare branch, master, updated. 5d84df1ffce03a6b4329a3f47fff88acd0331588

Shawn Moore sartak at bestpractical.com
Wed Dec 8 13:38:43 EST 2010


The branch, master has been updated
       via  5d84df1ffce03a6b4329a3f47fff88acd0331588 (commit)
      from  d2ee2dbbe316a34023ae3843ca2c8c186832c851 (commit)

Summary of changes:
 t/99-pod-coverage.t |    1 +
 t/99-pod-spelling.t |    1 +
 t/99-pod.t          |    1 +
 3 files changed, 3 insertions(+), 0 deletions(-)

- Log -----------------------------------------------------------------
commit 5d84df1ffce03a6b4329a3f47fff88acd0331588
Author: Shawn M Moore <sartak at bestpractical.com>
Date:   Wed Dec 8 13:38:38 2010 -0500

    Only run POD tests for authors

diff --git a/t/99-pod-coverage.t b/t/99-pod-coverage.t
index 5bb680a..c80068a 100644
--- a/t/99-pod-coverage.t
+++ b/t/99-pod-coverage.t
@@ -4,5 +4,6 @@ use Test::More;
 my $skip_all = 1;
 eval "use Test::Pod::Coverage";
 plan skip_all => "Test::Pod::Coverage required for testing POD coverage" if $@;
+plan skip_all => "Coverage tests only run for authors" unless (-d 'inc/.author');
 all_pod_coverage_ok();
 
diff --git a/t/99-pod-spelling.t b/t/99-pod-spelling.t
index a7416f0..5b2ca9d 100644
--- a/t/99-pod-spelling.t
+++ b/t/99-pod-spelling.t
@@ -4,6 +4,7 @@ use strict;
 use Test::More;
 eval "use Test::Spelling";
 plan skip_all => "Test::Spelling required for testing POD spelling" if $@;
+plan skip_all => "Coverage tests only run for authors" unless (-d 'inc/.author');
 
 add_stopwords(<DATA>);
 all_pod_files_spelling_ok();
diff --git a/t/99-pod.t b/t/99-pod.t
index 92ba3f6..a8261f7 100644
--- a/t/99-pod.t
+++ b/t/99-pod.t
@@ -1,5 +1,6 @@
 use Test::More;
 eval "use Test::Pod 1.00";
 plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
+plan skip_all => "Coverage tests only run for authors" unless (-d 'inc/.author');
 all_pod_files_ok();
 

-----------------------------------------------------------------------



More information about the Bps-public-commit mailing list