aboutsummaryrefslogtreecommitdiffstats
path: root/t/04compile.t
diff options
context:
space:
mode:
Diffstat (limited to 't/04compile.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);