From: | nadim <nadim [...] khemir.net> |
Subject: | Fwd: Test::Pod |
Date: | Sun, 25 Sep 2005 21:28:13 +0200 |
To: | bug-test-pod-coverage [...] rt.cpan.org |
Show quoted text
---------- Forwarded Message ----------
Subject: Test::Pod
Date: Sunday 28 August 2005 14:34
From: nadim <nadim@khemir.net>
To: andy@petdance.com
Hi, I have a little problem with Test::Pod you might be able to help me with.
Here is my setup:
# -*- perl -*-
# check all the distributions pod
use Test::More;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage"
if $@;
all_pod_coverage_ok();
<<
I took this from your example so it should be OK.
I attach one of the files where the problem occures (DoUndoRedo.pm). The
problem happends for many of my modules not just that one. You'll notice that
I have the pod inside the subs. I tried moving the pod outside but it gave me
the same result.
Here is the output of my tests:
[nadim@khemir Text-Editor-Vip]$ ./Build test
t/000_Text_Editor_Vip_Pod_Coverage......................NOK 4
# Failed test (/usr/local/lib/perl5/site_perl/5.8.5/Test/Pod/Coverage.pm
at line 112)
# Coverage for Text::Editor::Vip::DoUndoRedo is 0.0%, with 8 naked
subroutines:
# DecrementUndoStackLevel
# GetDoBuffer
# GetDoPosition
# GetUndoBuffer
# IncrementUndoStackLevel
# PushUndoStep
# Redo
# Undo
t/000_Text_Editor_Vip_Pod_Coverage......................NOK 5
# Failed test (/usr/local/lib/perl5/site_perl/5.8.5/Test/Pod/Coverage.pm
at line 112)
# Coverage for Text::Editor::Vip::Selection is 82.4%, with 3 naked
subroutines:
# Clear
...
Cheers, Nadim.
-------------------------------------------------------
Message body is not shown because sender requested not to inline it.