aboutsummaryrefslogtreecommitdiffstats
path: root/t/04compile.t
blob: 137c3f3dacffd537c0906a1d7fb14b2aa0ad3614 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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);