Cleanups
[catagits/Catalyst-Plugin-Cache.git] / t / currying_conf.t
index b9f50fa..df5f049 100644 (file)
@@ -3,12 +3,12 @@
 use strict;
 use warnings;
 
-use Test::More 'no_plan';
+use Test::More;
 use Test::Deep qw/superhashof cmp_deeply/;
 
 use Scalar::Util qw/refaddr/;
 
-use ok "Catalyst::Plugin::Cache";
+use_ok "Catalyst::Plugin::Cache";
 
 {
     package MockApp;
@@ -57,3 +57,5 @@ cmp_deeply( { @{ $c->cache("foo")->meta } }, superhashof({ bah => "foo" }), "met
 
 is( refaddr( $c->cache("bar") ), refaddr( $c->cache("bar") ), "since bar is hard coded as an object it's always the same" );
 
+done_testing;
+