the plan is to use done_testing()
[catagits/Catalyst-Runtime.git] / t / aggregate / unit_core_container_path_env.t
index b91d185..11e3d81 100644 (file)
@@ -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;