X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2Fmethods%2Fstr%2Fmodify.t;fp=t%2Fmethods%2Fstr%2Fmodify.t;h=0000000000000000000000000000000000000000;hb=386630c145754930ffc3a3b0988dd0108f4394db;hp=0d4536fa21d9fbf3495bda2de6901140e374c52c;hpb=36958ebe8b4c296f858f6b5df8f629cdb341812d;p=perl%2Fmodules%2Fre-engine-Plugin.git diff --git a/t/methods/str/modify.t b/t/methods/str/modify.t deleted file mode 100644 index 0d4536f..0000000 --- a/t/methods/str/modify.t +++ /dev/null @@ -1,16 +0,0 @@ -use strict; -use Test::More tests => 1; -use re::engine::Plugin ( - exec => sub { - my ($re, $str) = @_; - - $$str = "eek"; - - return 1; - }, -); - -my $sv = "ook"; -if (\$sv =~ /pattern/) { - is($sv, "eek"); -}