]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/blobdiff - t/methods/str/types.t
Order the test subdirectories
[perl/modules/re-engine-Plugin.git] / t / methods / str / types.t
diff --git a/t/methods/str/types.t b/t/methods/str/types.t
deleted file mode 100644 (file)
index f5064e9..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-use strict;
-use Test::More tests => 7;
-use re::engine::Plugin (
-    exec => sub {
-        my ($re, $str) = @_;
-
-        isa_ok($str, $re->pattern);
-
-        return 1;
-    },
-);
-
-my $sv;
-\$sv    =~ "SCALAR";
-\\$sv   =~ "REF";
-[]      =~ "ARRAY";
-{}      =~ "HASH";
-\*STDIN =~ "GLOB";
-sub {}  =~ "CODE";
-bless({} => "main") =~ "main"