This is an automatically generated mail to inform you that tests are now available in t/spec/S28-named-variables/inc.t
commit 1f6b32e3b9ea370b8f10de64ce8f386f50aa2198 Author: moritz <mor...@c213334d-75ef-0310-aa23-eaa082d1ae64> Date: Mon Jun 28 20:58:52 2010 +0000 [t/spec] tests for RT #75956, @*INC should be writable git-svn-id: http://svn.pugscode.org/p...@31484 c213334d-75ef-0310-aa23-eaa082d1ae64 diff --git a/t/spec/S28-named-variables/inc.t b/t/spec/S28-named-variables/inc.t index 4c3d462..449ef02 100644 --- a/t/spec/S28-named-variables/inc.t +++ b/t/spec/S28-named-variables/inc.t @@ -2,7 +2,7 @@ use v6; use Test; -plan 3; +plan 5; # Note that @*INC is only provisional until we have plans for a "real" # module database in place. @@ -18,4 +18,7 @@ is(+...@*inc, $number_in_inc + 1, 'we added something to @INC'); pop @*INC; is(+...@*inc, $number_in_inc, 'we removed something from @INC'); +lives_ok { @*INC = <a b c> }, 'Can assign to @*INC'; +is @*INC.join(','), 'a,b,c', '... and assignment worked'; + # vim: ft=perl6