RT notifier: parse templates without header correctly
[openxpki.git] / trunk / clients / perl / OpenXPKI-Client-HTML-Mason / t / 03_pod_coverage.t
blob696fe467536b568b861aa8d61da460de8a430852
1 use Test::More 'no_plan';
2 eval "use Test::Pod::Coverage 1.04";
3 plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
4 my @files = Test::Pod::Coverage::all_modules();
5 diag "Check the POD coverage in ".scalar @files." files\n";
7 TODO: {
8     local $TODO = 'We need a lot more code documentation ...';
9     foreach my $module (@files) {
10             pod_coverage_ok($module, "$module is covered" );
11     }