From: Tomas Doran Date: Mon, 6 Feb 2012 23:06:15 +0000 (+0000) Subject: use Test::More, duh - stupid X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=20db6c2b1e1585872f945c8412660b574fec200b use Test::More, duh - stupid --- diff --git a/t/aggregate/live_container_custom_container_nosugar.t b/t/aggregate/live_container_custom_container_nosugar.t index 4709113..4c3e929 100644 --- a/t/aggregate/live_container_custom_container_nosugar.t +++ b/t/aggregate/live_container_custom_container_nosugar.t @@ -2,6 +2,8 @@ use warnings; use strict; use FindBin '$Bin'; use lib "$Bin/../lib"; +use Test::More; + BEGIN { if ( $ENV{CATALYST_SERVER} ) { plan skip_all => 'This test does not run live'; diff --git a/t/aggregate/live_container_custom_container_sugar.t b/t/aggregate/live_container_custom_container_sugar.t index 662e3dd..1855f7e 100644 --- a/t/aggregate/live_container_custom_container_sugar.t +++ b/t/aggregate/live_container_custom_container_sugar.t @@ -2,6 +2,8 @@ use warnings; use strict; use FindBin '$Bin'; use lib "$Bin/../lib"; +use Test::More; + BEGIN { if ( $ENV{CATALYST_SERVER} ) { plan skip_all => 'This test does not run live';