X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate%2Funit_core_setup_log.t;h=9e80cf4f2742b846c3cd38f542c286464324f6c4;hp=e2dba17f8926dc2365da292529886417cb8c70af;hb=310c2a39c86dc3f8a1dd0bb80c2543e809e2cb3c;hpb=be5fd858fdd2f1776bd389e89fdb65788a651a3a diff --git a/t/aggregate/unit_core_setup_log.t b/t/aggregate/unit_core_setup_log.t index e2dba17..9e80cf4 100644 --- a/t/aggregate/unit_core_setup_log.t +++ b/t/aggregate/unit_core_setup_log.t @@ -2,7 +2,6 @@ use strict; use warnings; use Test::More tests => 30; -use Test::Exception; use Catalyst (); @@ -77,13 +76,13 @@ foreach my $name (grep { /^(CATALYST|TESTAPP)/ } keys %ENV) { my $app = mock_app('TestAppLogEmptyString'); $app->setup_log(''); ok !$app->debug, 'Not In debug mode'; - # Note that by default, you get _all_ the log levels turned on + # Note that by default, you get _all_ the log levels turned on over debug test_log_object($app->log, fatal => 1, error => 1, warn => 1, info => 1, - debug => 1, + debug => 0, ); } {