X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Flive_container_custom_container_sugar.t;h=662e3ddca830f5346f52c9a490808fb90abf711f;hb=1310b91c3c6e304f3e35396dd475ccc4eb8e4f52;hp=f57a6b02b7dafb28c21c1e598f85d33866dd6709;hpb=1e1434d101a11df4e2af0f16bb7c612e6f6d7712;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/live_container_custom_container_sugar.t b/t/aggregate/live_container_custom_container_sugar.t index f57a6b0..662e3dd 100644 --- a/t/aggregate/live_container_custom_container_sugar.t +++ b/t/aggregate/live_container_custom_container_sugar.t @@ -2,7 +2,13 @@ use warnings; use strict; use FindBin '$Bin'; use lib "$Bin/../lib"; +BEGIN { + if ( $ENV{CATALYST_SERVER} ) { + plan skip_all => 'This test does not run live'; + exit 0; + } +} + use TestCustomContainer; -use Test::More skip_all => 'Sugar not implemented'; TestCustomContainer->new(sugar => 1);