This is an automated email from the git hooks/post-receive script. intrigeri pushed a commit to tag debian_version_1_0-1 in repository libparse-debianchangelog-perl.
commit 9d16876b77372cf112a9975f36d9fad66c8c4779 Author: Frank Lichtenheld <[email protected]> Date: Wed Oct 12 15:14:09 2005 +0000 Initial revision --- t/Documentation.t | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/t/Documentation.t b/t/Documentation.t new file mode 100644 index 0000000..b4a3328 --- /dev/null +++ b/t/Documentation.t @@ -0,0 +1,28 @@ +# -*- perl -*- + +use strict; +use warnings; + +use Test::More tests => 9; +use Test::Pod 1.00; + +# don't use all_pod_files_ok since we can't plan() then previously +foreach (all_pod_files()) { + pod_file_ok( $_, "POD $_ ok" ); +} + +use Test::Pod::Coverage; + +foreach (qw( Parse::DebianChangelog + Parse::DebianChangelog::Entry + Parse::DebianChangelog::Util )) { + pod_coverage_ok( $_, "POD coverage $_" ); +} + +TODO: { + local $TODO = "my documenation sucks"; + + foreach (qw( Parse::DebianChangelog::ChangesFilters )) { + pod_coverage_ok( $_, "POD coverage $_" ); + } +} -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libparse-debianchangelog-perl.git _______________________________________________ Pkg-perl-cvs-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-perl-cvs-commits
