From f2a6063b5853c9fdedf9c6d48db8ec10e812e9c2 Mon Sep 17 00:00:00 2001
From: Chris Cormack <chris@bigballofwax.co.nz>
Date: Fri, 27 Dec 2013 16:06:34 +1300
Subject: [PATCH] Bug 11452 Add unit tests for Koha::Template::Plugin::Cache
To test
run prove t/Koha_Template_Plugin_Cache.t
---
t/Koha_Template_Plugin_Cache.t | 7 +++++++
1 file changed, 7 insertions(+)
create mode 100644 t/Koha_Template_Plugin_Cache.t
diff --git a/t/Koha_Template_Plugin_Cache.t b/t/Koha_Template_Plugin_Cache.t
new file mode 100644
index 0000000..34d2747
--- /dev/null
+++ b/t/Koha_Template_Plugin_Cache.t
@@ -0,0 +1,7 @@
+use Modern::Perl;
+use Test::More tests => 2;
+
+use_ok('Koha::Template::Plugin::Cache');
+
+ok(my $cache = Koha::Template::Plugin::Cache->new());
+
--
1.8.5.2