blob: 770a51ea90f85783c6dd92e8b9d52ae6f3854c7c (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require './test.pl';
}
use strict;
plan 5;
my $err = "Unimplemented at $0 line " . ( __LINE__ + 2 ) . ".\n";
eval { ... };
is $@, $err;
#
# Regression tests, making sure ... is still parsable as an operator.
#
my @lines = split /\n/ => <<'--';
# Check simple range operator.
my @arr = 'A' ... 'D';
# Range operator with print.
print 'D' ... 'A';
# Without quotes, 'D' could be a file handle.
print D ... A ;
# Another possible interaction with a file handle.
print ${\"D"} ... A ;
--
foreach my $line (@lines) {
next if $line =~ /^\s*#/ || $line !~ /\S/;
my $mess = qq {Parsing '...' in "$line" as a range operator};
eval qq {
{local *STDOUT; no strict "subs"; $line;}
pass \$mess;
1;
} or do {
my $err = $@;
$err =~ s/\n//g;
fail "$mess ($err)";
}
}
|