In Catalyst::Test, don't mangle headers of non-HTML responses. RT#79043
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Attributes.pm
CommitLineData
683d672b 1use strict;
2use warnings;
3
4package My::AttributesBaseClass;
5use base qw( Catalyst::Controller );
6
7sub fetch : Chained('/') PathPrefix CaptureArgs(1) {
8
9}
10
11sub view : PathPart Chained('fetch') Args(0) {
12
13}
14
15sub foo { # no attributes
16
17}
18
19package TestApp::Controller::Attributes;
20use base qw(My::AttributesBaseClass);
21
22sub view { # override attributes to "hide" url
23
24}
25
26sub foo : Local {
27
28}
29
301;