]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/blobdiff - t/ctl/eval-comp.t
Order the test subdirectories
[perl/modules/re-engine-Plugin.git] / t / ctl / eval-comp.t
diff --git a/t/ctl/eval-comp.t b/t/ctl/eval-comp.t
deleted file mode 100644 (file)
index 104f111..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-=pod
-
-This will always die, see L<re::engine::Plugin/comp> for why.
-
-This can be made to live regardless of C<eval> by adding C<| G_EVAL>
-to C<call_sv()> in C<Plugin_comp>.
-
-=cut
-
-use strict;
-
-use Test::More skip_all => 'Always dies';
-
-use re::engine::Plugin (
-    comp => sub { die "died at comp time" },
-);
-
-eval { "str" ~~ /noes/ };
-
-TODO: {
-    local $TODO = 'passing tests for known bug with how we handle eval';
-    pass;
-}