diff --git a/S32-hash/exists.t b/S32-hash/exists.t index b629c727a3..19241f0a9d 100644 --- a/S32-hash/exists.t +++ b/S32-hash/exists.t @@ -1,7 +1,7 @@ use v6; use Test; -plan 19; +plan 21; =begin description @@ -35,6 +35,9 @@ sub gen_hash { #?niecza skip 'Invocant handling is NYI' is (exists %h1: 'a'), True, "Test existence for single key. (Indirect notation)"; is (%h1.exists('a')), True, "Test existence for single key. (method call)"; + #?rakudo 2 skip 'NYI as far as I know' + is (%h1{'a'}:exists), True, "Test existence for single key. (adverb)"; + is (%h1:exists), True, "Test existence for single key. (adverb 2)"; }; {