no need for requests in unit_core_container_live_auto.t
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_container_path_env.t
CommitLineData
ffc0b0d8 1use strict;
2use warnings;
3
4use FindBin;
5use lib "$FindBin::Bin/../lib";
6
7use Test::More tests => 3;
8
9$ENV{ TESTAPPCONTAINER_CONFIG } = 'test.perl';
10
11use_ok 'Catalyst::Test', 'TestAppContainer';
12
13ok my ( $res, $c ) = ctx_request( '/' ), 'context object';
14
15is_deeply $c->container->resolve( service => 'config_path' ), [ qw( test.perl perl ) ], 'path is "test.perl"';