Fix double encoding bug?
[catagits/XML-Feed.git] / t / pod-coverage.t
CommitLineData
8c30ad3d 1#!perl
2
3use strict;
4use warnings;
5use Test::More;
6eval 'use Test::Pod::Coverage 1.04';
7plan skip_all => 'Test::Pod::Coverage 1.04 required for testing POD coverage' if $@;
8my @modules = grep { !/(RSS|Atom)/ }Test::Pod::Coverage::all_modules();
9plan tests => scalar(@modules);
10pod_coverage_ok($_, { also_private => [ qr/^init_empty/ ], },) for @modules;
11