Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Unfudge for Niecza.
  • Loading branch information
colomon committed Sep 4, 2013
1 parent 79a7a58 commit b4311be
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions S32-array/end.t
Expand Up @@ -23,14 +23,12 @@ plan 12;
{
my $a;
#?pugs todo
#?niecza skip "https://github.com/sorear/niecza/issues/187"
is $a.end, -1, ".end works on arbitrary scalars (1)";
}

{
my $a = 42;
#?pugs todo
#?niecza skip "https://github.com/sorear/niecza/issues/187"
is $a.end, 0, ".end works on arbitrary scalars (2)";
}

Expand All @@ -44,7 +42,6 @@ plan 12;
is $a.end, 2, ".end works on initialized arrayrefs (1)";
}

#?niecza skip 'Unable to resolve method end in class Parcel'
{
my $a = <a b c>;
is $a.end, 2, ".end works on initialized arrayrefs (2)";
Expand All @@ -54,7 +51,6 @@ plan 12;
eval_dies_ok 'end(1,2,3,4)', "end(1,2,3,4) should not work";
}

#?niecza skip 'Unable to resolve method end in class Parcel'
{
is (end (1,2,3,4)), 3, "end (1,2,3,4) should work";
}
Expand All @@ -63,7 +59,6 @@ plan 12;
is (end [1,2,3,4]), 3, "end [1,2,3,4] should work";
}

#?niecza skip 'Unable to resolve method end in class Parcel'
{
is (end ([1,2,3,4],)), 0, "end ([1,2,3,4],) should return 0";
}
Expand Down

0 comments on commit b4311be

Please sign in to comment.