Trying to unfuck this branch
[catagits/Catalyst-Runtime.git] / t / unit_metaclass_compat_extend_non_moose_controller.t
diff --git a/t/unit_metaclass_compat_extend_non_moose_controller.t b/t/unit_metaclass_compat_extend_non_moose_controller.t
deleted file mode 100644 (file)
index 568a629..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-use Catalyst ();
-
-{
-    package TestApp;
-    use base qw/Catalyst/;
-}
-{
-    package TestApp::Controller::Base;
-    use base qw/Catalyst::Controller/;
-}
-{
-    package TestApp::Controller::Other;
-    use Moose;
-    use Test::More tests => 1;
-    use Test::Exception;
-    lives_ok {
-        extends 'TestApp::Controller::Base';
-    };
-}
-