Trying to unfuck this branch
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Moose.pm
diff --git a/t/lib/TestApp/Controller/Moose.pm b/t/lib/TestApp/Controller/Moose.pm
deleted file mode 100644 (file)
index 705b2bd..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-package TestApp::Controller::Moose;
-
-use Moose;
-
-use namespace::clean -except => 'meta';
-
-BEGIN { extends qw/Catalyst::Controller/; }
-use MooseX::MethodAttributes; # FIXME - You need to say this if you have
-                              #         modifiers so that you get the correct
-                              #         method metaclass, why does the modifier
-                              #         on MODIFY_CODE_ATTRIBUTES not work.
-
-has attribute => (
-    is      => 'ro',
-    default => 42,
-);
-
-sub get_attribute : Local {
-    my ($self, $c) = @_;
-    $c->response->body($self->attribute);
-}
-
-sub with_local_modifier : Local {
-    my ($self, $c) = @_;
-    $c->forward('get_attribute');
-}
-
-before with_local_modifier => sub {
-    my ($self, $c) = @_;
-    $c->response->header( 'X-Catalyst-Test-Before' => 'before called' );
-};
-
-1;