Skip to content

Commit

Permalink
add the test
Browse files Browse the repository at this point in the history
  • Loading branch information
Gonéri Le Bouder committed Nov 6, 2011
1 parent 6ffc1ab commit a040a9e
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions t/01compile.t
@@ -0,0 +1,21 @@
#!/usr/bin/perl

use strict;
use warnings;

use English qw(-no_match_vars);
use Test::More;

eval {
require Test::Compile;
Test::Compile->import();
};
if ($EVAL_ERROR) {
my $msg = 'Test::Compile required';
plan(skip_all => $msg);
}

# exclude linked modules
my @files = all_pm_files('lib');

all_pm_files_ok(@files);

0 comments on commit a040a9e

Please sign in to comment.