Trying to unfuck this branch
[catagits/Catalyst-Runtime.git] / trunk / t / lib / TestApp / Action / TestBefore.pm
diff --git a/trunk/t/lib/TestApp/Action/TestBefore.pm b/trunk/t/lib/TestApp/Action/TestBefore.pm
deleted file mode 100644 (file)
index c0db6fe..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-package TestApp::Action::TestBefore;
-
-use strict;
-use warnings;
-
-use base qw/Catalyst::Action/;
-
-sub execute {
-    my $self = shift;
-    my ( $controller, $c, $test ) = @_;
-    $c->res->header( 'X-TestAppActionTestBefore', $test );
-    $self->next::method( @_ );
-}
-
-1;