9 if ($c . $_ eq 'cab') {print "ok 1\n";} else {print "not ok 1 $c$_\n";}
15 if ($c . $_ eq 'cab') {print "ok 2\n";} else {print "not ok 2\n";}
21 @foo = ("hi \n","there\n","!\n");
24 print join('',@bar) eq 'hi there!' ? "ok 3\n" : "not ok 3\n";
28 print join('',$foo,@foo) eq 'hi there!' ? "ok 4\n" : "not ok 4\n";
31 print chomp() == 1 ? "ok 5\n" : "not ok 5\n";
32 print $_ eq "foo\n" ? "ok 6\n" : "not ok 6\n";
35 print chomp() == 1 ? "ok 7\n" : "not ok 7\n";
36 print $_ eq "foo" ? "ok 8\n" : "not ok 8\n";
39 print chomp() == 0 ? "ok 9\n" : "not ok 9\n";
40 print $_ eq "foo" ? "ok 10\n" : "not ok 10\n";
44 print chomp() == 2 ? "ok 11\n" : "not ok 11\n";
45 print $_ eq "f" ? "ok 12\n" : "not ok 12\n";
49 print chomp() == 0 ? "ok 13\n" : "not ok 13\n";
50 print $_ eq "bar" ? "ok 14\n" : "not ok 14\n";
54 print chomp() == 5 ? "ok 15\n" : "not ok 15\n";
55 print $_ eq "f" ? "ok 16\n" : "not ok 16\n";
59 print chomp() == 2 ? "ok 17\n" : "not ok 17\n";
60 print $_ eq "f" ? "ok 18\n" : "not ok 18\n";
64 print chomp() == 1 ? "ok 19\n" : "not ok 19\n";
65 print $_ eq "f" ? "ok 20\n" : "not ok 20\n";
69 print chomp() == 0 ? "ok 21\n" : "not ok 21\n";
70 print $_ eq "f" ? "ok 22\n" : "not ok 22\n";
74 print chomp() == 2 ? "ok 23\n" : "not ok 23\n";
75 print $_ eq "" ? "ok 24\n" : "not ok 24\n";
79 print chomp() == 2 ? "ok 25\n" : "not ok 25\n";
80 print $_ eq "a" ? "ok 26\n" : "not ok 26\n";
84 print chomp() == 0 ? "ok 27\n" : "not ok 27\n";
85 print $_ eq "axx" ? "ok 28\n" : "not ok 28\n";
87 # This case once mistakenly behaved like paragraph mode.
90 print chomp() == 0 ? "ok 29\n" : "not ok 29\n";
91 print $_ eq "ab\n" ? "ok 30\n" : "not ok 30\n";
97 print $_ eq "abc" ? "ok 31\n" : "not ok 31\n";
101 print $_ eq "abc\x{1234}" ? "ok 32\n" : "not ok 32\n";
103 $_ = "\x{1234}\x{2345}";
105 print $_ eq "\x{1234}" ? "ok 33\n" : "not ok 33\n";
107 # TODO! Make sure chop(LIST) returns the right value.
108 my @stuff = qw(this that);
109 print chop(@stuff[0,1]) eq 't' ? "ok 34 # TODO\n" : "not ok 34 # TODO\n";