]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/blobdiff - t/20-methods/str/undef.t
Order the test subdirectories
[perl/modules/re-engine-Plugin.git] / t / 20-methods / str / undef.t
diff --git a/t/20-methods/str/undef.t b/t/20-methods/str/undef.t
new file mode 100644 (file)
index 0000000..42ee8bf
--- /dev/null
@@ -0,0 +1,13 @@
+use strict;
+use Test::More tests => 1;
+use re::engine::Plugin (
+    comp => sub {
+        my ($re, $str) = @_;
+
+        is($re->str, undef, 'str is undef');
+
+        return;
+    },
+);
+
+qr/pattern/;