Skip tests that use ctx_request when live
[catagits/Catalyst-Runtime.git] / t / aggregate / live_container_custom_container_sugar.t
CommitLineData
850a9bbe 1use warnings;
2use strict;
3use FindBin '$Bin';
4use lib "$Bin/../lib";
1310b91c 5BEGIN {
6 if ( $ENV{CATALYST_SERVER} ) {
7 plan skip_all => 'This test does not run live';
8 exit 0;
9 }
10}
11
850a9bbe 12use TestCustomContainer;
13
14TestCustomContainer->new(sugar => 1);