Refactored the Content-Type negotiation to live in Catalyst::Request::REST.(drolsky)
[catagits/Catalyst-Action-Serialize-Data-Serializer.git] / t / lib / Test / Serialize / View / Simple.pm
diff --git a/t/lib/Test/Serialize/View/Simple.pm b/t/lib/Test/Serialize/View/Simple.pm
new file mode 100644 (file)
index 0000000..b0c1990
--- /dev/null
@@ -0,0 +1,12 @@
+package Test::Serialize::View::Simple;
+
+use base qw/Catalyst::View/;
+
+sub process {
+       my ($self, $c) = @_;
+       
+    $c->res->body("I am a simple view");
+       return 1;
+}
+
+1;