We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e00888 commit 6d5743dCopy full SHA for 6d5743d
S05-capture/caps.t
@@ -15,8 +15,7 @@ sub ca(@x) {
15
ok 'a b c d' ~~ /(.*)/, 'basic sanity';
16
ok $/.caps ~~ Positional, '$/.caps returns something Positional';
17
#?rakudo todo 'return type of .chunks'
18
-#?niecza todo 'return type of .chunks'
19
-isa_ok $/.chunks ~~ Positional, '$/.chunks returns something Positional';
+isa_ok $/.chunks, Positional, '$/.chunks returns something Positional';
20
isa_ok $/.caps.[0], Pair, '.. and the items are Pairs (caps);';
21
isa_ok $/.chunks.[0], Pair, '.. and the items are Pairs (chunks);';
22
isa_ok $/.caps.[0].value, Match, '.. and the values are Matches (caps);';
0 commit comments