This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Following fd909433c7437296, check that {sub f} correctly stubs the subroutine.
[perl5.git] / t / comp / term.t
CommitLineData
8d063cd8
LW
1#!./perl
2
8d063cd8
LW
3# tests that aren't important enough for base.term
4
0505442f 5print "1..23\n";
8d063cd8
LW
6
7$x = "\\n";
8print "#1\t:$x: eq " . ':\n:' . "\n";
9if ($x eq '\n') {print "ok 1\n";} else {print "not ok 1\n";}
10
11$x = "#2\t:$x: eq :\\n:\n";
12print $x;
13unless (index($x,'\\\\')>0) {print "ok 2\n";} else {print "not ok 2\n";}
14
15if (length('\\\\') == 2) {print "ok 3\n";} else {print "not ok 3\n";}
16
17$one = 'a';
18
19if (length("\\n") == 2) {print "ok 4\n";} else {print "not ok 4\n";}
20if (length("\\\n") == 2) {print "ok 5\n";} else {print "not ok 5\n";}
21if (length("$one\\n") == 3) {print "ok 6\n";} else {print "not ok 6\n";}
22if (length("$one\\\n") == 3) {print "ok 7\n";} else {print "not ok 7\n";}
23if (length("\\n$one") == 3) {print "ok 8\n";} else {print "not ok 8\n";}
24if (length("\\\n$one") == 3) {print "ok 9\n";} else {print "not ok 9\n";}
378cc40b 25if (length("\\${one}") == 2) {print "ok 10\n";} else {print "not ok 10\n";}
8d063cd8 26
a687059c
LW
27if ("${one}b" eq "ab") { print "ok 11\n";} else {print "not ok 11\n";}
28
29@foo = (1,2,3);
30if ("$foo[1]b" eq "2b") { print "ok 12\n";} else {print "not ok 12\n";}
31if ("@foo[0..1]b" eq "1 2b") { print "ok 13\n";} else {print "not ok 13\n";}
32$" = '::';
33if ("@foo[0..1]b" eq "1::2b") { print "ok 14\n";} else {print "not ok 14\n";}
b8a4b1be
GS
34
35# test if C<eval "{...}"> distinguishes between blocks and hashrefs
36
37$a = "{ '\\'' , 'foo' }";
38$a = eval $a;
39if (ref($a) eq 'HASH') {print "ok 15\n";} else {print "not ok 15\n";}
40
41$a = "{ '\\\\\\'abc' => 'foo' }";
42$a = eval $a;
43if (ref($a) eq 'HASH') {print "ok 16\n";} else {print "not ok 16\n";}
44
45$a = "{'a\\\n\\'b','foo'}";
46$a = eval $a;
47if (ref($a) eq 'HASH') {print "ok 17\n";} else {print "not ok 17\n";}
48
49$a = "{'\\\\\\'\\\\'=>'foo'}";
50$a = eval $a;
51if (ref($a) eq 'HASH') {print "ok 18\n";} else {print "not ok 18\n";}
52
53$a = "{q,a'b,,'foo'}";
54$a = eval $a;
55if (ref($a) eq 'HASH') {print "ok 19\n";} else {print "not ok 19\n";}
56
57$a = "{q[[']]=>'foo'}";
58$a = eval $a;
59if (ref($a) eq 'HASH') {print "ok 20\n";} else {print "not ok 20\n";}
60
61# needs disambiguation if first term is a variable
62$a = "+{ \$a , 'foo'}";
63$a = eval $a;
64if (ref($a) eq 'HASH') {print "ok 21\n";} else {print "not ok 21\n";}
65
66$a = "+{ \$a=>'foo'}";
67$a = eval $a;
68if (ref($a) eq 'HASH') {print "ok 22\n";} else {print "not ok 22\n";}
0505442f
GS
69
70$a = "{ 0x01 => 'foo'}->{0x01}";
71$a = eval $a;
72if ($a eq 'foo') {print "ok 23\n";} else {print "not ok 23\n";}