1#!perl
2
3use Test::More;
4eval "use Test::Pod 1.00";
5plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
6
7plan tests => 2;
8
9pod_file_ok( 'lib/Module/CoreList.pm', 'module pod ok' );
10pod_file_ok( 'corelist', 'script pod ok' );
11