aboutsummaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorBuchan Milne <buchan@mageia.org>2010-10-28 10:40:56 +0000
committerBuchan Milne <buchan@mageia.org>2010-10-28 10:40:56 +0000
commit45f7611e07bdf606b93040b2a075fd72759d44e0 (patch)
tree511fea40d574e9fcfbd2bd7109a2440dac8e2c1a /t
parent601b41083cf7c2186ecce70ec07aebdb9310edd6 (diff)
downloadidentity-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.t14
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);