gallerymaker/modules/vars_carp.t
2014-12-11 21:58:53 -05:00

16 lines
246 B
Perl

#!./perl
# test that "use vars;" doesn't load Carp
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
%ENV{PERL5LIB} = '../lib';
}
$| = 1;
print "1..1\n";
# Carp not loaded yet;
print defined $Carp::VERSION ? "not ok 1\n" : "ok 1\n";