summaryrefslogtreecommitdiff
path: root/t/lib/compmod.pl
blob: fa032f1acf1916cc98a114cf7dc9993f277df669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!./perl

BEGIN {
    chdir 't';
    @INC = '../lib';
}

my $module = shift;

# 'require open' confuses Perl, so we use instead.
eval "use $module ();";
if( $@ ) {
    print "not ";
    $@ =~ s/\n/\n# /g;
    warn "# require failed with '$@'\n";
}
print "ok - $module\n";