This is an automatically generated mail to inform you that tests are now available in t/spec/S02-names_and_variables/names.t
commit 438559f312bb2e4c1db0fa8c5db5fac505f271e4 Author: kyle <k...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Fri Jul 24 16:52:53 2009 +0000 [t/spec] Test for RT #63646 git-svn-id: http://svn.pugscode.org/p...@27707 c213334d-75ef-0310-aa23-eaa082d1ae64 diff --git a/t/spec/S02-names_and_variables/names.t b/t/spec/S02-names_and_variables/names.t index 95bdc45..d69aa16 100644 --- a/t/spec/S02-names_and_variables/names.t +++ b/t/spec/S02-names_and_variables/names.t @@ -2,7 +2,7 @@ use v6; use Test; -plan 17; +plan 19; # I'm using semi-random nouns for variable names since I'm tired of foo/bar/baz and alpha/beta/... @@ -56,4 +56,13 @@ plan 17; is A::_b(), 'sub A::_b', 'A::_b() call works'; } +# RT #63646 +#?rakudo todo 'RT #63646' +{ + dies_ok { OscarMikeGolf::whiskey_tango_foxtrot() }, + 'dies when calling non-existent sub in non-existent package'; + dies_ok { Test::bravo_bravo_quebec() }, + 'dies when calling non-existent sub in existing package'; +} + # vim: ft=perl6