This is an automatically generated mail to inform you that tests are now available in t/spec/integration/weird-errors.t
commit efe79daba611d32f2d702eebb16b324742949478 Author: moritz <mor...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Fri Apr 30 18:47:00 2010 +0000 [t/spec] test for RT #74608, time() is limited to zero arguments git-svn-id: http://svn.pugscode.org/p...@30525 c213334d-75ef-0310-aa23-eaa082d1ae64 diff --git a/t/spec/integration/weird-errors.t b/t/spec/integration/weird-errors.t index c959fac..a4800a5 100644 --- a/t/spec/integration/weird-errors.t +++ b/t/spec/integration/weird-errors.t @@ -3,7 +3,7 @@ use Test; BEGIN { @*INC.push: 't/spec/packages' }; use Test::Util; -plan 4; +plan 5; # this used to segfault in rakudo is_run( @@ -32,5 +32,6 @@ is_run( 'presence of postcircumfix does not lead to redeclaration warnings', ); +dies_ok { time(1, 2, 3) }, 'time() with arguments dies';