From 4ec35ad2fe15c711df75671e3b1d2e5243b45cb5 Mon Sep 17 00:00:00 2001 From: Robin Sheat Date: Thu, 22 May 2014 11:59:52 +1200 Subject: [PATCH] Bug 12041 - POD fixing followup This fixes a minor POD error detected, and also adds the Koha/ directory to the regular test case so that the in-repo tests can find these things. Signed-off-by: Jonathan Druart --- Koha/Cache.pm | 2 ++ xt/author/podcorrectness.t | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Koha/Cache.pm b/Koha/Cache.pm index 0b5e499..358a9a4 100644 --- a/Koha/Cache.pm +++ b/Koha/Cache.pm @@ -234,6 +234,8 @@ the caching layer anyway. The cache object to use if you want to provide your own. It should be an instance of C and follow the same interface as L. +=back + =cut sub set_in_cache { diff --git a/xt/author/podcorrectness.t b/xt/author/podcorrectness.t index 6ad915c..ed3fc5d 100644 --- a/xt/author/podcorrectness.t +++ b/xt/author/podcorrectness.t @@ -19,6 +19,6 @@ xt/author/podcorrectness.t> use Test::More; eval "use Test::Pod 1.00"; plan skip_all => "Test::Pod 1.00 required for testing POD" if $@; -my @poddirs = qw( C4 ); +my @poddirs = qw( C4 Koha ); all_pod_files_ok( all_pod_files( @poddirs ) ); -- 2.0.0.rc2