diff options
author | Buchan Milne <buchan@mageia.org> | 2010-10-28 10:40:56 +0000 |
---|---|---|
committer | Buchan Milne <buchan@mageia.org> | 2010-10-28 10:40:56 +0000 |
commit | 45f7611e07bdf606b93040b2a075fd72759d44e0 (patch) | |
tree | 511fea40d574e9fcfbd2bd7109a2440dac8e2c1a /t | |
parent | 601b41083cf7c2186ecce70ec07aebdb9310edd6 (diff) | |
download | identity-45f7611e07bdf606b93040b2a075fd72759d44e0.tar identity-45f7611e07bdf606b93040b2a075fd72759d44e0.tar.gz identity-45f7611e07bdf606b93040b2a075fd72759d44e0.tar.bz2 identity-45f7611e07bdf606b93040b2a075fd72759d44e0.tar.xz identity-45f7611e07bdf606b93040b2a075fd72759d44e0.zip |
Dont run in debug mode by default (use -d option if you want debug mode)
Cleanups from Guillaume Rousse
Remove some debugging
Diffstat (limited to 't')
-rw-r--r-- | t/04compile.t | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/t/04compile.t b/t/04compile.t new file mode 100644 index 0000000..137c3f3 --- /dev/null +++ b/t/04compile.t @@ -0,0 +1,14 @@ +#!/usr/bin/perl + +use strict; +use warnings; + +use English qw(-no_match_vars); +use Test::More; +use Test::Compile; + +my @files = $OSNAME eq 'MSWin32' ? + grep { ! /Syslog/ } all_pm_files('lib') : + grep { ! /Win32/ } all_pm_files('lib') ; + +all_pm_files_ok(@files); |