File: pod-coverage.t

package info (click to toggle)
libhtml-wikiconverter-kwiki-perl 0.51-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 92 kB
  • sloc: perl: 251; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 557 bytes parent folder | download | duplicates (19)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!perl -T

use Test::More;
eval "use Test::Pod::Coverage 1.04";
plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
all_pod_coverage_ok( { also_private => [
  # These methods are documented in HTML::WikiConverter::Dialects
  qr/
     get_elem_contents
    |get_wiki_page
    |get_attr_str
    |elem_within_block
    |is_camel_case
    |rule
    |rules
    |attribute
    |attributes
    |preprocess_tree
    |preprocess_node
    |postprocess_output
    |caption2para
    |strip_aname
    |base_url
    |wiki_url
  /x
] } );