Tests for %ENV fail in Catalyst::Test
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / View / Dump / Env.pm
diff --git a/t/lib/TestApp/View/Dump/Env.pm b/t/lib/TestApp/View/Dump/Env.pm
new file mode 100644 (file)
index 0000000..0acd1df
--- /dev/null
@@ -0,0 +1,12 @@
+package TestApp::View::Dump::Env;
+
+use strict;
+use base qw[TestApp::View::Dump];
+
+sub process {
+    my ( $self, $c ) = @_;
+    return $self->SUPER::process( $c, $c->engine->env );
+}
+
+1;
+