[Rt-commit] rt branch, 4.2/test-pod-for-developers, created. rt-4.2.3-25-g7cff2bd
Kevin Falcone
falcone at bestpractical.com
Fri Mar 7 13:49:28 EST 2014
The branch, 4.2/test-pod-for-developers has been created
at 7cff2bdb0eb72a0c0fb02f0488ee4f75419b083b (commit)
- Log -----------------------------------------------------------------
commit 7cff2bdb0eb72a0c0fb02f0488ee4f75419b083b
Author: Kevin Falcone <falcone at bestpractical.com>
Date: Fri Mar 7 13:44:54 2014 -0500
Developers should run pod tests
If you're running RT's tests, you should trigger t/pod.t so that you
don't screw up our POD. While this is 'technically' a new dep, it's
only for devs who run tests, so we're ok with it.
diff --git a/sbin/rt-test-dependencies.in b/sbin/rt-test-dependencies.in
index f852cbb..7754d55 100644
--- a/sbin/rt-test-dependencies.in
+++ b/sbin/rt-test-dependencies.in
@@ -284,6 +284,7 @@ Test::Expect 0.31
Test::LongString
Test::MockTime
Test::NoWarnings
+Test::Pod
Test::Warn
Test::WWW::Mechanize 1.30
Test::WWW::Mechanize::PSGI
diff --git a/t/pod.t b/t/pod.t
index d11a497..e3c530e 100644
--- a/t/pod.t
+++ b/t/pod.t
@@ -2,6 +2,5 @@ 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 $@;
+use Test::Pod;
all_pod_files_ok();
-----------------------------------------------------------------------
More information about the rt-commit
mailing list