#!/usr/bin/perl

use strict;
use warnings;
use FindBin ();
use Test::More;

eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required" if $@;
my @files = all_pod_files($FindBin::Bin . "/../lib");

plan tests => scalar @files;

pod_file_ok($_) for @files;


syntax highlighted by Code2HTML, v. 0.9.1