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.t - POD tests
#
# ==============================================================================  

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

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

all_pod_files_ok();