blob: fb3757f5cda9212e1da2f115089a422e64211950 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!./perl -w
BEGIN {
chdir 't' if -d 't';
unshift @INC, '../lib';
print "1..9\n";
}
use strict;
use Fatal qw(open);
my $i = 1;
eval { open FOO, '<lkjqweriuapofukndajsdlfjnvcvn' };
print "not " unless $@ =~ /^Can't open/;
print "ok $i\n"; ++$i;
my $foo = 'FOO';
for ('$foo', "'$foo'", "*$foo", "\\*$foo") {
eval qq{ open $_, '<$0' };
print "not " if $@;
print "ok $i\n"; ++$i;
print "not " unless scalar(<FOO>) =~ m|^#!./perl|;
print "not " if $@;
print "ok $i\n"; ++$i;
close FOO;
}
|