X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Funit_core_setup_log.t;h=843d10ebc79d14548d56393d595ab129780eb9c3;hb=8484866421e8caa420e118848629c3b62d6086c3;hp=ffb2859b2bafe591686e00923319fbd84e951bb3;hpb=4cb5d29f864badfa3f6491193875357f86ba9142;p=catagits%2FCatalyst-Runtime.git diff --git a/t/unit_core_setup_log.t b/t/unit_core_setup_log.t index ffb2859..843d10e 100644 --- a/t/unit_core_setup_log.t +++ b/t/unit_core_setup_log.t @@ -49,10 +49,10 @@ local %ENV; # Ensure blank or someone, somewhere will fail.. $app->setup_log(''); ok $app->debug, 'In debug mode'; test_log_object($app->log, - fatal => 0, - error => 0, - warn => 0, - info => 0, + fatal => 1, + error => 1, + warn => 1, + info => 1, debug => 1, ); } @@ -89,10 +89,10 @@ local %ENV; # Ensure blank or someone, somewhere will fail.. $app->setup_log('debug'); ok $app->debug, 'In debug mode'; test_log_object($app->log, - fatal => 0, - error => 0, - warn => 0, - info => 0, + fatal => 1, + error => 1, + warn => 1, + info => 1, debug => 1, ); }