fixed running unnder http server test failure and added some pod
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / View / Dump / Env.pm
index a869be3..d713b0e 100644 (file)
@@ -13,5 +13,14 @@ sub process {
     });
 }
 
+## We override Data::Dumper here since its not reliably outputting
+## something that is roundtrip-able.
+
+sub dump {
+    my ( $self, $reference ) = @_;
+    use Data::Dump ();
+    return Data::Dump::dump($reference);
+}
+
 1;