ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-IRC3/t/pod-coverage.t
Revision: 1.4
Committed: Wed Jul 9 09:48:20 2008 UTC (18 years, 2 months ago) by elmex
Content type: application/x-troff
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +8 -1 lines
Log Message:
non blocknig connect tested => ok

File Contents

# Content
1 #!perl
2 use strict;
3 use warnings;
4 use Test::More;
5
6 eval "use Test::Pod::Coverage 1.04";
7 plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
8
9 plan tests => 4;
10
11 pod_coverage_ok (
12 'Net::IRC3', {
13 private => [ ]
14 }
15 );
16
17 pod_coverage_ok (
18 'Net::IRC3::Util', {
19 private => [
20 qw/ escape_ctcp
21 escape_lowlevel
22 filter_ctcp_text_attr_bogus
23 unescape_ctcp
24 unescape_lowlevel
25 /
26 ]
27 }
28 );
29
30 pod_coverage_ok (
31 'Net::IRC3::Connection', {
32 private => [ qr/^_/ ]
33 }
34 );
35
36 pod_coverage_ok (
37 'Net::IRC3::Client::Connection', {
38 private => [ qr/^_/, qr/_cb$/ ]
39 }
40 );