X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FTest.pm;fp=lib%2FCatalyst%2FTest.pm;h=5c0cbe7cfd9ea22e2a20c1b14d10d7b69367a0ee;hp=ef3def5e8effd8b22666e2ad765bbcb25ea638b6;hb=89222c2a9136170aa4012fbf3c7b804abeff2463;hpb=55dd8a5870a214f80b81a2ae3aa2d9ff17a8aaa0 diff --git a/lib/Catalyst/Test.pm b/lib/Catalyst/Test.pm index ef3def5..5c0cbe7 100644 --- a/lib/Catalyst/Test.pm +++ b/lib/Catalyst/Test.pm @@ -311,6 +311,10 @@ sub _local_request { for my $f ( $h->header_field_names ) { $resp->init_header( $f, [ $h->header($f) ] ); } + # Another horrible hack to make the response headers have a + # 'status' field. This is for back-compat, but you should + # call $resp->code instead! + $resp->init_header('status', [ $resp->code ]); }, }, @_); }