[Patches] [PATCH] Bug 5327 : Complete coverage for BackgroundJob.pm
koha-patchbot at kohaaloha.com
koha-patchbot at kohaaloha.com
Sun Dec 4 20:05:03 NZDT 2011
From: Chris Cormack <chrisc at catalyst.net.nz>
Date: Sun, 4 Dec 2011 20:02:45 +1300
Subject: [PATCH] Bug 5327 : Complete coverage for BackgroundJob.pm
---
t/db_dependent/BackgroundJob.t | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/t/db_dependent/BackgroundJob.t b/t/db_dependent/BackgroundJob.t
index 2726eb3..8106e02 100644
--- a/t/db_dependent/BackgroundJob.t
+++ b/t/db_dependent/BackgroundJob.t
@@ -7,7 +7,7 @@ use strict;
use warnings;
use C4::Auth;
use CGI;
-use Test::More tests => 8;
+use Test::More tests => 10;
BEGIN {
use_ok('C4::BackgroundJob');
@@ -34,3 +34,7 @@ ok ($background->status);
$background->size("56");
is ($background->size, "56", "testing size");
+$background->finish("finished");
+is ($background->status,'completed', "testing finished");
+
+ok ($background->results); # Will return undef unless finished
\ No newline at end of file
--
1.7.5.4
More information about the Patches
mailing list