This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove the port to MiNT. It's a dead platform that hasn't had any love since 5.005
[perl5.git] / t / op / reg_nc_tie.t
CommitLineData
192b9cd1
AB
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6 require './test.pl';
7}
8
9# Do a basic test on all the tied methods of Tie::Hash::NamedCapture
10
1e1d4b91
JJ
11print "1..13\n";
12
13# PL_curpm->paren_names can be a null pointer. See that this succeeds anyway.
14'x' =~ /(.)/;
15() = %+;
16pass( 'still alive' );
192b9cd1
AB
17
18"hlagh" =~ /
19 (?<a>.)
20 (?<b>.)
21 (?<a>.)
22 .*
23 (?<e>$)
24/x;
25
26# FETCH
27is($+{a}, "h", "FETCH");
28is($+{b}, "l", "FETCH");
29is($-{a}[0], "h", "FETCH");
30is($-{a}[1], "a", "FETCH");
31
32# STORE
33eval { $+{a} = "yon" };
34ok(index($@, "read-only") != -1, "STORE");
35
36# DELETE
37eval { delete $+{a} };
38ok(index($@, "read-only") != -1, "DELETE");
39
40# CLEAR
41eval { %+ = () };
42ok(index($@, "read-only") != -1, "CLEAR");
43
44# EXISTS
45ok(exists $+{e}, "EXISTS");
46ok(!exists $+{d}, "EXISTS");
47
48# FIRSTKEY/NEXTKEY
49is(join('|', sort keys %+), "a|b|e", "FIRSTKEY/NEXTKEY");
50
51# SCALAR
52is(scalar(%+), 3, "SCALAR");
53is(scalar(%-), 3, "SCALAR");