Release 0.36
[catagits/Catalyst-Plugin-Static-Simple.git] / t / 07mime_types.t
index e9276b0..06e3277 100644 (file)
@@ -11,11 +11,11 @@ use Catalyst::Test 'TestApp';
 \r
 # test custom MIME types\r
 TestApp->config->{'Plugin::Static::Simple'}->{mime_types} = {\r
-    omg => 'holy/crap',\r
+    unknown => 'holy/crap',\r
     gif => 'patents/are-evil',\r
 };\r
 \r
-ok( my $res = request('http://localhost/files/err.omg'), 'request ok' );\r
+ok( my $res = request('http://localhost/files/err.unknown'), 'request ok' );\r
 is( $res->content_type, 'holy/crap', 'custom MIME type ok' );\r
 \r
 ok( $res = request('http://localhost/files/bad.gif'), 'request ok' );\r