This is an automatically generated mail to inform you that tests are now available in t/spec/S05-match/capturing-contexts.t
commit a79f9bc01be3c4fec98a41dd8e8c497783bc2ee2 Author: kyle <k...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Mon Oct 26 16:58:07 2009 +0000 [t/spec] Tests for RT #70007 git-svn-id: http://svn.pugscode.org/p...@28900 c213334d-75ef-0310-aa23-eaa082d1ae64 diff --git a/t/spec/S05-match/capturing-contexts.t b/t/spec/S05-match/capturing-contexts.t index a7279ec..b0ef110 100644 --- a/t/spec/S05-match/capturing-contexts.t +++ b/t/spec/S05-match/capturing-contexts.t @@ -1,8 +1,8 @@ use v6; - use Test; - -plan 21; +BEGIN { @*INC.push('t/spec/packages/') }; +use Test::Util; +plan *; if !eval('("a" ~~ /a/)') { skip_rest "skipped tests - rules support appears to be missing"; @@ -81,4 +81,17 @@ if !eval('("a" ~~ /a/)') { 'Match coerced to Hash says match exists'; } +#?rakudo skip 'RT 70007' +nok 'aa' ~~ /(.)$1/, 'match with non-existent capture does not match'; +#?rakudo todo 'RT 70007' +is_run( q{'aa' ~~ /(.)$1/}, + { + status => 0, + out => '', + err => rx/\S/, + }, + 'match with non-existent capture emits a warning' ); + +done_testing; + # vim: ft=perl6