X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Funit_core_setup_log.t;fp=t%2Funit_core_setup_log.t;h=843d10ebc79d14548d56393d595ab129780eb9c3;hb=e24229207cb1369e0c4ad27a3261effe20d986a8;hp=ffb2859b2bafe591686e00923319fbd84e951bb3;hpb=59d5a63860b7506d4f5542c2774163cad745a27a;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, ); }