Some OCD cleanup; addition of Travis and Coveralls
This commit is contained in:
+11
-7
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user