X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fquote.t;h=921cc94255f28c0234e0e05461398bc6869b82cd;hb=9bd5658a784ec13e0f0378450a7982135267ab0c;hp=2f2e930cec42edab88feadf05bc5321a10a9327f;hpb=c0ebfc1ec2da649a6158fc7563d186b80edbbd3a;p=p5sagit%2FDevel-Declare.git diff --git a/t/quote.t b/t/quote.t index 2f2e930..921cc94 100644 --- a/t/quote.t +++ b/t/quote.t @@ -1,22 +1,14 @@ use strict; use warnings; -use Test::More tests => 14; +use Test::More tests => 15; use Devel::Declare 'method' => sub {}; +use File::Spec; sub test_eval; -TODO: { - local $TODO = "dd_ck_const doesn't special-case ops created in quotelike contexts"; - test_eval 'qr/method/'; +QUOTE: { 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 'q/method/'; test_eval "'method'"; test_eval '"method"'; @@ -24,7 +16,24 @@ TODO: { test_eval '< 42 }'; +} + +SYSTEM: { + test_eval 'sub {`method`}'; # compiled to prevent calling arbitrary exe! + test_eval 'sub { qx{method} }'; +} + +REGEX: { + local $_=''; # the passing results will act on $_ + test_eval 'qr/method/'; + test_eval '/method/'; + test_eval 's/method//'; + test_eval 'tr/method/METHOD/'; +} + +FILE: { + test_eval q{ no warnings 'reserved'; open method, '<', File::Spec->devnull }; test_eval ''; }