Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct tests that could never possibly work.
Resolves RT #124842.
  • Loading branch information
jnthn committed Jun 6, 2015
1 parent e225997 commit f4fb60e
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions S03-junctions/misc.t
Expand Up @@ -370,13 +370,11 @@ ok Mu & Mu ~~ Mu, 'Mu & Mu ~~ Mu works';
}

# RT #67866: [BUG] [LHF] Error with stringifying .WHAT on any junctions
#?rakudo skip 'lower case junction RT #124842'
#?niecza skip 'Impossible test: === takes Any'
{
ok((WHAT any()) === Junction, "test WHAT on empty any junction");
ok(any().WHAT === Junction, "test WHAT on empty any junction");
ok((WHAT any(1,2)) === Junction, "test WHAT on any junction");
ok(any(1,2).WHAT === Junction, "test WHAT on any junction");
ok((WHAT any()) ~~ Junction, "test WHAT on empty any junction");
ok(any().WHAT ~~ Junction, "test WHAT on empty any junction");
ok((WHAT any(1,2)) ~~ Junction, "test WHAT on any junction");
ok(any(1,2).WHAT ~~ Junction, "test WHAT on any junction");
}

# Any list has junction methods
Expand Down

0 comments on commit f4fb60e

Please sign in to comment.