X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FDump.pm;h=e0a1a2d7b47db25d2db5704f3fb6efcb7486f081;hb=fe82a51db5b44026493ce2a6e05c0f233ddfb4dd;hp=bcf13bd0dd019be62cede6dd8ca1ea5acca0698b;hpb=1ef7eebf9c868f25fb25288e54bb3f520bce7dc5;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp/Controller/Dump.pm b/t/lib/TestApp/Controller/Dump.pm index bcf13bd..e0a1a2d 100644 --- a/t/lib/TestApp/Controller/Dump.pm +++ b/t/lib/TestApp/Controller/Dump.pm @@ -14,14 +14,6 @@ sub env : Action Relative { $c->forward('TestApp::View::Dump::Env'); } -sub env_on_engine : Action Relative { - my ( $self, $c ) = @_; - # JNAP - I changed this to req since the engine no longer - # has the env but the tests here are useful. - $c->stash(env => $c->req->env); - $c->forward('TestApp::View::Dump::Env'); -} - sub request : Action Relative { my ( $self, $c ) = @_; $c->req->params(undef); # Should be a no-op, and be ignored.