Skip to content

Commit

Permalink
remove wrongly ported test (lcfirst -> tc), rakudo-fudge for missing tc
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Jul 27, 2012
1 parent 33b7005 commit 35ecf2e
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions S03-operators/inplace.t
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Test;

# L<S03/Assignment operators/A op= B>

plan 28;
plan 27;

{
my @a = (1, 2, 3);
Expand Down Expand Up @@ -44,13 +44,12 @@ plan 28;

my $f = "lowercase"; $f .= uc;
my $g = "UPPERCASE"; $g .= lc;
#?rakudo emit #
my $h = "lowercase"; $h .= tc;
my $i = "UPPERCASE"; $i .= tc;
is($f, "LOWERCASE", "inplace uc");
is($g, "uppercase", "inplace lc");
#?rakudo skip 'tc'
is($h, "Lowercase", "inplace tc");
#?pugs todo
is($i, "uPPERCASE", "inplace lcfirst");

# L<S12/"Mutating methods">
my @b = <z a b d e>;
Expand Down

0 comments on commit 35ecf2e

Please sign in to comment.