X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Funit_core_setup.t;h=c784c0345c5237c35e430a62dad470298ea73066;hb=610bc6eccd3d749c9e14422575c3b8787f48fcf1;hp=311320f2925845ee9890eef7168ba4ec40d0a659;hpb=0fa676a79aa572c22884b48560683f21f596fe45;p=catagits%2FCatalyst-Runtime.git diff --git a/t/unit_core_setup.t b/t/unit_core_setup.t index 311320f..c784c03 100644 --- a/t/unit_core_setup.t +++ b/t/unit_core_setup.t @@ -12,7 +12,7 @@ use Test::More tests => 18; TESTDEBUG: { package MyTestDebug; - use parent qw/Catalyst/; + use base qw/Catalyst/; __PACKAGE__->setup( '-Debug', ); @@ -32,7 +32,7 @@ ok +MyTestDebug->debug, 'And it should return true'; TESTAPP: { package MyTestLog; - use parent qw/Catalyst/; + use base qw/Catalyst/; __PACKAGE__->setup( '-Log=warn,error,fatal' );