Skip to content

Commit 7397cba

Browse files
committed
pugs fudge
1 parent f7e8545 commit 7397cba

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

‎S03-operators/inplace.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ my $i = "UPPERCASE"; $i .= tc;
4949
is($f, "LOWERCASE", "inplace uc");
5050
is($g, "uppercase", "inplace lc");
5151
is($h, "Lowercase", "inplace tc");
52+
#?pugs todo
5253
is($i, "uPPERCASE", "inplace lcfirst");
5354

5455
# L<S12/"Mutating methods">

‎S32-str/substr.t

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ plan 90;
6464
is("שיעבוד כבר".substr(4, 4), "וד כ", ".substr on Hebrew text");
6565
}
6666

67+
#?pugs skip 'chrs'
6768
{ # codepoints greater than 0xFFFF
6869
my $str = (0x10426, 0x10427).chrs;
6970
is $str.codes, 2, "Sanity check string";

0 commit comments

Comments
 (0)