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
51
52
53
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
require './test.pl';
}
# Do a basic test on all the tied methods of Tie::Hash::NamedCapture
print "1..13\n";
# PL_curpm->paren_names can be a null pointer. See that this succeeds anyway.
'x' =~ /(.)/;
() = %+;
pass( 'still alive' );
"hlagh" =~ /
(?<a>.)
(?<b>.)
(?<a>.)
.*
(?<e>$)
/x;
# FETCH
is($+{a}, "h", "FETCH");
is($+{b}, "l", "FETCH");
is($-{a}[0], "h", "FETCH");
is($-{a}[1], "a", "FETCH");
# STORE
eval { $+{a} = "yon" };
ok(index($@, "read-only") != -1, "STORE");
# DELETE
eval { delete $+{a} };
ok(index($@, "read-only") != -1, "DELETE");
# CLEAR
eval { %+ = () };
ok(index($@, "read-only") != -1, "CLEAR");
# EXISTS
ok(exists $+{e}, "EXISTS");
ok(!exists $+{d}, "EXISTS");
# FIRSTKEY/NEXTKEY
is(join('|', sort keys %+), "a|b|e", "FIRSTKEY/NEXTKEY");
# SCALAR
is(scalar(%+), 3, "SCALAR");
is(scalar(%-), 3, "SCALAR");
|