Ready for 0.01
[p5sagit/B-Hooks-EndOfScope-WithFallback.git] / t / exception.t
diff --git a/t/exception.t b/t/exception.t
deleted file mode 100644 (file)
index 87eb676..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-use strict;
-use warnings;
-use Test::More tests => 2;
-
-use B::Hooks::EndOfScope;
-
-eval q[
-    sub foo {
-        BEGIN {
-            on_scope_end { die 'bar' };
-        }
-    }
-];
-
-like($@, qr/^bar/);
-pass('no segfault');