]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/blobdiff - t/methods/str/modify.t
Order the test subdirectories
[perl/modules/re-engine-Plugin.git] / t / methods / str / modify.t
diff --git a/t/methods/str/modify.t b/t/methods/str/modify.t
deleted file mode 100644 (file)
index 0d4536f..0000000
+++ /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");
-}