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
+11 -7
View File
@@ -1,8 +1,12 @@
#!perl -T
use strict;
use warnings;
use Test::More;
#!/usr/bin/env perl
use Test::Most;
eval "use Test::CheckManifest 0.9";
plan skip_all => "Test::CheckManifest 0.9 required" if $@;
ok_manifest({filter => [qr/\.git/]});
eval('use Test::CheckManifest 0.9');
plan( 'skip_all' => "Test::CheckManifest 0.9 required" ) if $@;
ok_manifest( { 'filter' => [
qr/\.git/,
qr/\.travis\.yml$/,
qr/perl-travis-helper/,
qr/cover_db/,
] } );
done_testing();