I don't think pushing to config is actually needed
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_container_applevel_config.t
index 9ec08a4..eb3c984 100644 (file)
@@ -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;