Add lets add the new file shall we
Ash Berlin [Wed, 21 Feb 2007 17:53:13 +0000 (17:53 +0000)]
t/lib/TestApp/Action/TestMyAction.pm [new file with mode: 0644]

diff --git a/t/lib/TestApp/Action/TestMyAction.pm b/t/lib/TestApp/Action/TestMyAction.pm
new file mode 100644 (file)
index 0000000..66bcdf9
--- /dev/null
@@ -0,0 +1,16 @@
+package TestApp::Action::TestMyAction;
+
+use strict;
+use warnings;
+
+use base qw/Catalyst::Action/;
+
+sub execute {
+    my $self = shift;
+    my ( $controller, $c, $test ) = @_;
+    $c->res->header( 'X-TestAppActionTestMyAction', 'MyAction works' );
+    $self->NEXT::execute(@_);
+}
+
+1;
+