Skip Menu |

This queue is for tickets about the Pod-Coverage CPAN distribution.

Report information
The Basics
Id: 23750
Status: open
Priority: 0/
Queue: Pod-Coverage

People
Owner: Nobody in particular
Requestors: kevin [...] sapphiireoflondon.org
Cc:
AdminCc:

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



Subject: List of private symbols should include ^SCALAR$
Hi Richard Although you include TIESCALAR, SCALAR itself is missing. This seems to be the only TIEHASH method which is not catered for. Here are the details of my platform: Pod-Coverage v0.18 Perl v5.8.8 OS: Fedora Core 6 Best wishes Kevin Ruscoe
I just wanted to open the same ticket. The only current workaround is to declare it valid yourself, like --8<--- #!/usr/bin/perl use Test::More; eval "use Test::Pod::Coverage tests => 1"; plan skip_all => "Test::Pod::Covarage required for testing POD Coverage" if $@; pod_coverage_ok ("Tie::Hash::DBD", { also_private => [ qr{^ SCALAR $}x ], }, # Probably a bug in Pod::Coverage "Tie::Hash::DBD is covered"); -->8---