X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Funit_core_container_applevel_config.t;h=eb3c9842b4b6f84d8f3f46b7741639beb434fc12;hb=38957dfeb8be485af571af1cd74e8a4a1fa789e4;hp=9ec08a48bbb3cec0288e41ca5051c63cc16e2f88;hpb=dcd608250d14fa1efc3e25e7a14a23ffa95c75cf;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/unit_core_container_applevel_config.t b/t/aggregate/unit_core_container_applevel_config.t index 9ec08a4..eb3c984 100644 --- a/t/aggregate/unit_core_container_applevel_config.t +++ b/t/aggregate/unit_core_container_applevel_config.t @@ -16,4 +16,10 @@ $applevel_config = TestAppContainer->config->{applevel_config}; ok($applevel_config, 'applevel_config exists in the config accessor'); is($applevel_config, 'foo', 'and has the correct value'); +my $home = TestAppContainer->container->resolve(service => 'config')->{home}; +ok( $home ); + +$home = TestAppContainer->config->{home}; +ok( $home ); + done_testing;