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

BEGIN {
    chdir '..' if -d '../pod' && -d '../t';
    @INC = 'lib';
}

my $module = shift;

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