From 4de439e4280d5792fab04dc417d1d0a4cf7fa650 Mon Sep 17 00:00:00 2001 From: colomon Date: Thu, 24 Jun 2010 16:06:24 +0000 Subject: [PATCH] [t/spec] Fudge hyper.t to work in Rakudo again. git-svn-id: http://svn.pugscode.org/pugs@31425 c213334d-75ef-0310-aa23-eaa082d1ae64 --- t/spec/S03-metaops/hyper.t | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/t/spec/S03-metaops/hyper.t b/t/spec/S03-metaops/hyper.t index e24273dc7..b47a2003c 100644 --- a/t/spec/S03-metaops/hyper.t +++ b/t/spec/S03-metaops/hyper.t @@ -689,9 +689,12 @@ my @e; } # L -@r = »~» (1, 2, 3, *); -@e = ; -is ~@r, ~@e, 'dwimmy hyper extends lists ending with * by copying the last element'; +#?rakudo todo "Doesn't extend lists ending in , * yet" +{ + @r = »~» (1, 2, 3, *); + @e = ; + is ~@r, ~@e, 'dwimmy hyper extends lists ending with * by copying the last element'; +} done_testing; -- 2.11.4.GIT