Koha/t/Koha_Template_Plugin_Cache.t
Chris Cormack 0ba13938fb Bug 11452: Add unit tests for Koha::Template::Plugin::Cache
To test

run prove t/Koha_Template_Plugin_Cache.t

Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de>
Works nicely.

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
2014-01-10 15:42:23 +00:00

6 lines
142 B
Perl

use Modern::Perl;
use Test::More tests => 2;
use_ok('Koha::Template::Plugin::Cache');
ok(my $cache = Koha::Template::Plugin::Cache->new());