From: Florian Ragwitz Date: Thu, 9 Apr 2009 00:35:58 +0000 (+0000) Subject: UnTODO passing tests. X-Git-Tag: 0.005000~13 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2FDevel-Declare.git;a=commitdiff_plain;h=87e03828671c29c0a4468d63ae1f86f04ac24826 UnTODO passing tests. --- diff --git a/t/quote.t b/t/quote.t index a173dc2..94baca4 100644 --- a/t/quote.t +++ b/t/quote.t @@ -8,17 +8,17 @@ sub test_eval; TODO: { local $TODO = "dd_ck_const doesn't special-case ops created in quotelike contexts"; - test_eval 'qr/method/'; test_eval 'qq/method/'; - test_eval '/method/'; - test_eval 's/method//'; test_eval '`method`'; test_eval 'qx/method/'; - test_eval 'tr/method/METHOD/'; } # these ones work OK +test_eval 'qr/method/'; +test_eval '/method/'; +test_eval 's/method//'; +test_eval 'tr/method/METHOD/'; test_eval 'q/method/'; test_eval "'method'"; test_eval '"method"';