The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w

#-- Pragmas --------------------------------------------------------------------

use 5.010;
use strict;
use warnings;

# ENVIRONMENT ------------------------------------------------------------------

use Test::More;

#-- verify load the module

#-- load the modules -----------------------------------------------------------

use Cwd qw(
    abs_path
);

#-- setting up facilities ------------------------------------------------------

#-- declarations ---------------------------------------------------------------

#-- Global data ----------------------------------------------------------------

my $modules_dir = abs_path( 'lib' );

# INSTRUCTIONS -----------------------------------------------------------------

eval 'use Test::Pod;';  ## no critic
plan skip_all => 'because Test::Pod required for testing' if $@;

all_pod_files_ok( $modules_dir );

# POSTCONDITIONS ---------------------------------------------------------------