Change configuration key to 'Plugin::Static::Simple' by default.
[catagits/Catalyst-Plugin-Static-Simple.git] / t / 20debug.t
index e934dee..400dfcd 100644 (file)
@@ -1,38 +1,38 @@
-#!perl\r
-\r
-use strict;\r
-use warnings;\r
-\r
-use FindBin;\r
-use lib "$FindBin::Bin/lib";\r
-\r
-use Test::More tests => 5;\r
-use Catalyst::Test 'TestApp';\r
-\r
-# test defined static dirs\r
-TestApp->config->{static}->{dirs} = [\r
-    'always-static',\r
-];\r
-\r
-TestApp->config->{static}->{debug} = 1;\r
-\r
-use Catalyst::Log;\r
-\r
-local *Catalyst::Log::_send_to_log;\r
-local our @MESSAGES;\r
-{\r
-    no warnings 'redefine';\r
-    *Catalyst::Log::_send_to_log = sub {\r
-        my $self = shift;\r
-        push @MESSAGES, @_;\r
-    };\r
-}\r
-\r
-\r
-# a missing file in a defined static dir will return 404 and text/html\r
-ok( my $res = request('http://localhost/always-static/404.txt'), 'request ok' );\r
-is( $res->code, 404, '404 ok' );\r
-is( $res->content_type, 'text/html', '404 is text/html' );\r
-ok(defined $MESSAGES[0], 'debug message set');\r
-like( $MESSAGES[0], qr/404/, 'debug message contains 404'); \r
-\r
+#!perl
+
+use strict;
+use warnings;
+
+use FindBin;
+use lib "$FindBin::Bin/lib";
+
+use Test::More tests => 5;
+use Catalyst::Test 'TestApp';
+
+# test defined static dirs
+TestApp->config->{'Plugin::Static::Simple'}->{dirs} = [
+    'always-static',
+];
+
+TestApp->config->{'Plugin::Static::Simple'}->{debug} = 1;
+
+use Catalyst::Log;
+
+local *Catalyst::Log::_send_to_log;
+local our @MESSAGES;
+{
+    no warnings 'redefine';
+    *Catalyst::Log::_send_to_log = sub {
+        my $self = shift;
+        push @MESSAGES, @_;
+    };
+}
+
+
+# a missing file in a defined static dir will return 404 and text/html
+ok( my $res = request('http://localhost/always-static/404.txt'), 'request ok' );
+is( $res->code, 404, '404 ok' );
+is( $res->content_type, 'text/html', '404 is text/html' );
+ok(defined $MESSAGES[0], 'debug message set');
+like( $MESSAGES[0], qr/404/, 'debug message contains 404');
+