File: 99-pod-coverage.t

package info (click to toggle)
libtest-html-w3c-perl 0.04-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 96 kB
  • sloc: perl: 136; makefile: 2
file content (11 lines) | stat: -rwxr-xr-x 298 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl

use strict;
use Test::More;
eval "use Test::Pod::Coverage 1.00";
plan skip_all => "Test::Pod::Coverage 1.00 required for testing POD coverage" if $@;

plan tests=>1;
pod_coverage_ok( "Test::HTML::W3C",
   { also_private => [ qr/^import.+$/ ], }, "Test::HTML::W3C pod coverage",
);