X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Faggregate%2Funit_core_container_path_env.t;h=11e3d81c019ff7dd2e2fb8e5a3cc729214bd8d2d;hb=5e3121a809731aef928f60a3ad6b9b68fb4a8a9c;hp=b91d185c457a8c72dcb70796231f761fc656a423;hpb=9d8d71c2122d52b076bd17e8e53abd8d887ea949;p=catagits%2FCatalyst-Runtime.git diff --git a/t/aggregate/unit_core_container_path_env.t b/t/aggregate/unit_core_container_path_env.t index b91d185..11e3d81 100644 --- a/t/aggregate/unit_core_container_path_env.t +++ b/t/aggregate/unit_core_container_path_env.t @@ -4,7 +4,7 @@ use warnings; use FindBin; use lib "$FindBin::Bin/../lib"; -use Test::More tests => 3; +use Test::More; $ENV{ TESTAPPCONTAINER_CONFIG } = 'test.perl'; @@ -13,3 +13,5 @@ use_ok 'Catalyst::Test', 'TestAppContainer'; ok my ( $res, $c ) = ctx_request( '/' ), 'context object'; is_deeply $c->container->resolve( service => 'config_path' ), [ qw( test.perl perl ) ], 'path is "test.perl"'; + +done_testing;