We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa01099 commit 489e8f3Copy full SHA for 489e8f3
t/conf/extra.conf.in
@@ -37,6 +37,7 @@ Alias /raw @DocumentRoot@
37
SetHandler modperl
38
PerlResponseHandler MY::NoCTypeHandler
39
PerlOutputFilterHandler Apache2::Filter::Minifier::JavaScript
40
+ DefaultType text/missing
41
</Location>
42
43
<Location /decline_uc>
t/content-type.t
@@ -26,6 +26,6 @@ content_type_missing: {
26
my $body = $res->content;
27
my $orig = slurp( 't/htdocs/test.js' );
28
29
- ok( $res->content_type !~ m{text/javascript} );
+ ok( $res->content_type eq 'text/missing' );
30
ok( t_cmp($body, $orig) );
31
}
0 commit comments