Skip to content

Commit

Permalink
Added author tests, removed SIGNATURE.
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Trott committed Dec 10, 2009
1 parent 458c62d commit 4ae4845
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 90 deletions.
90 changes: 0 additions & 90 deletions SIGNATURE

This file was deleted.

5 changes: 5 additions & 0 deletions xt/perlcritic.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
use strict;
use Test::More;
eval q{ use Test::Perl::Critic };
plan skip_all => "Test::Perl::Critic is not installed." if $@;
all_critic_ok("lib");
4 changes: 4 additions & 0 deletions xt/pod.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
use Test::More;
eval "use Test::Pod 1.00";
plan skip_all => "Test::Pod 1.00 required for testing POD" if $@;
all_pod_files_ok();
4 changes: 4 additions & 0 deletions xt/synopsis.t
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
use Test::More;
eval "use Test::Synopsis";
plan skip_all => "Test::Synopsis required" if $@;
all_synopsis_ok();

0 comments on commit 4ae4845

Please sign in to comment.