The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl
# ==============================================================================
#
#   Eidolon
#   Copyright (c) 2009, Atma 7
#   ---
#   t/pod_coverage.t - POD coverage tests
#
# ==============================================================================  

use Test::More;
use warnings;
use strict;

eval "use Test::Pod::Coverage";
plan skip_all => "Test::Pod::Coverage required" if $@;
plan skip_all => "set EIDOLON_DEVEL environment variable to enable this test" unless $ENV{"EIDOLON_DEVEL"};

all_pod_coverage_ok();