Skip to content

Commit

Permalink
Fudge test on JVM by skipping
Browse files Browse the repository at this point in the history
This test apparently breaks because Test::is() doesn't take Mu
  • Loading branch information
lizmat committed Mar 19, 2015
1 parent bf91b2b commit 49ba10e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion S02-literals/adverbs.t
Expand Up @@ -52,7 +52,8 @@ plan 32;
#?rakudo 2 todo ":@<...> and :%<...> broken needs RT"
is_deeply (:@<fie>), (fie => @<fie>), 'Adverb with @< twigil works';
is_deeply (:%<foe>), (foe => %<foe>), 'Adverb with %< twigil works';
#?rakudo 3 todo "Moar makes new slang object each time, other backend NYI?"
#?rakudo.moar 3 todo "Moar makes new slang object each time, other backend NYI?"
#?rakudo.jvm 3 skip "Type check failed; expected 'Any' but got 'Mu'"
is_deeply (:$~MAIN), (MAIN => $~MAIN), 'Adverb with $~ twigil works';
is_deeply (:@~MAIN), (MAIN => @~MAIN), 'Adverb with @~ twigil works';
is_deeply (:%~MAIN), (MAIN => %~MAIN), 'Adverb with %~ twigil works';
Expand Down

0 comments on commit 49ba10e

Please sign in to comment.