Skip Menu |

This queue is for tickets about the CSS-Inliner CPAN distribution.

Report information
The Basics
Id: 64034
Status: resolved
Priority: 0/
Queue: CSS-Inliner

People
Owner: Nobody in particular
Requestors: MSTEVENS [...] cpan.org
Cc: michael.smith [...] dianomi.com
michael.stevens [...] dianomi.com
AdminCc:

Bug Information
Severity: Normal
Broken in: 2897
Fixed in: (no value)



CC: michael.stevens [...] dianomi.com,michael.smith [...] dianomi.com
Subject: Add pod tests
Added pod testing to hopefully avoid future pod bugs: http://gitorious.org/css-inliner/css-inliner/commit/1c14068acbe2f20874949d3f08e5d319a9c6b1eb Available as attached file or via gitorious repo.
Subject: 0001-Add-pod-tests.patch
From 1c14068acbe2f20874949d3f08e5d319a9c6b1eb Mon Sep 17 00:00:00 2001 From: Michael Stevens <mstevens@etla.org> Date: Sat, 18 Dec 2010 10:21:17 +0000 Subject: [PATCH] Add pod tests. --- MANIFEST | 1 + t/pod.t | 8 ++++++++ 2 files changed, 9 insertions(+), 0 deletions(-) create mode 100644 t/pod.t diff --git a/MANIFEST b/MANIFEST index cdd6a00..34a97a0 100644 --- a/MANIFEST +++ b/MANIFEST @@ -13,6 +13,7 @@ t/custom_html_tree.t t/fetch.perl t/linktest.t t/ordering.t +t/pod.t t/specificity.t t/html/acidtest.html t/html/acidtest_result.html diff --git a/t/pod.t b/t/pod.t new file mode 100644 index 0000000..bd87f46 --- /dev/null +++ b/t/pod.t @@ -0,0 +1,8 @@ +#!perl -T + +use Test::More; + +eval "use Test::Pod 1.00"; +plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; + +all_pod_files_ok(); -- 1.7.1
Hi Michael, Thanks for these fixes. I've committed them to the local tree and I'll be releasing an update on CPAN shortly. -Kevin ========================= Committed revision 2953.