From: Lukas Mai Date: Sun, 31 Mar 2013 12:45:06 +0000 (+0200) Subject: don't test POD for end users X-Git-Tag: v1.0103~3 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=18da5c15cdd55fbd156b0db72a8c6710b9eac279;p=p5sagit%2FFunction-Parameters.git don't test POD for end users --- diff --git a/GNUmakefile b/GNUmakefile index 121469e..1b1e054 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,3 +1,5 @@ +export RELEASE_TESTING=1 + include ./Makefile CCFLAGS := -DDEVEL $(CCFLAGS) diff --git a/t/00-load.t b/t/00-load.t index 2fdf461..de56c1d 100644 --- a/t/00-load.t +++ b/t/00-load.t @@ -1,4 +1,4 @@ -#!perl -T +#!perl use Test::More tests => 1; diff --git a/t/pod.t b/t/pod.t index ee8b18a..ea25e57 100644 --- a/t/pod.t +++ b/t/pod.t @@ -1,9 +1,11 @@ -#!perl -T +#!perl use strict; use warnings; use Test::More; +plan skip_all => "set RELEASE_TESTING=1 to run this test" unless $ENV{RELEASE_TESTING}; + # Ensure a recent version of Test::Pod my $min_tp = 1.22; eval "use Test::Pod $min_tp";