Write more tests.
[catagits/Catalyst-Action-Serialize-Data-Serializer.git] / t / lib / Test / Action / Class / Sub.pm
diff --git a/t/lib/Test/Action/Class/Sub.pm b/t/lib/Test/Action/Class/Sub.pm
new file mode 100644 (file)
index 0000000..372fcfc
--- /dev/null
@@ -0,0 +1,13 @@
+package Test::Action::Class::Sub;
+use Moose;
+
+extends 'Test::Action::Class';
+
+before execute => sub {
+   my ($self, $controller, $c, @args) = @_;
+   $c->response->header( 'Using-Sub-Action' => 'MOO' );
+};
+
+no Moose;
+
+1;