use Test::More, duh - stupid
[catagits/Catalyst-Runtime.git] / t / aggregate / live_container_custom_container_sugar.t
1 use warnings;
2 use strict;
3 use FindBin '$Bin';
4 use lib "$Bin/../lib";
5 use Test::More;
6
7 BEGIN {
8     if ( $ENV{CATALYST_SERVER} ) {
9         plan skip_all => 'This test does not run live';
10         exit 0;
11     }
12 }
13
14 use TestCustomContainer;
15
16 TestCustomContainer->new(sugar => 1);