Some OCD cleanup; addition of Travis and Coveralls

This commit is contained in:
Gryphon Shafer
2014-09-25 11:04:31 -07:00
parent e7764f004b
commit 956d549bcd
13 changed files with 120 additions and 138 deletions
+5 -7
View File
@@ -1,11 +1,9 @@
#!perl -T
use strict;
use warnings;
use Test::More;
#!/usr/bin/env perl
use Test::Most;
# Ensure a recent version of Test::Pod
my $min_tp = 1.22;
eval "use Test::Pod $min_tp";
plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;
eval("use Test::Pod $min_tp");
plan( 'skip_all' => "Test::Pod $min_tp required for testing POD" ) if $@;
all_pod_files_ok();
done_testing();