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