allow C<select('foo')> to autovivify *foo (SelectSaver expects that)
[p5sagit/p5-mst-13.2.git] / t / op / fh.t
CommitLineData
35cd451c 1#!./perl
2
f2f2613b 3print "1..5\n";
35cd451c 4
5my $test = 0;
6
7# symbolic filehandles should only result in glob entries with FH constructors
8
648cac19 9$|=1;
35cd451c 10my $a = "SYM000";
11print "not " if defined(fileno($a)) or defined *{$a};
12++$test; print "ok $test\n";
13
14select select $a;
15print "not " if defined *{$a};
16++$test; print "ok $test\n";
17
18print "not " if close $a or defined *{$a};
19++$test; print "ok $test\n";
20
21print "not " unless open($a, ">&STDOUT") and defined *{$a};
22++$test; print $a "ok $test\n";
23
24print "not " unless close $a;
25++$test; print $a "not "; print "ok $test\n";