bug 5327 started testing
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
This commit is contained in:
parent
594a31bfe1
commit
80f8c41e4c
1 changed files with 19 additions and 1 deletions
|
@ -6,10 +6,28 @@
|
||||||
use strict;
|
use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
|
|
||||||
use Test::More tests => 1;
|
use Test::More tests => 8;
|
||||||
|
|
||||||
BEGIN {
|
BEGIN {
|
||||||
use_ok('C4::BackgroundJob');
|
use_ok('C4::BackgroundJob');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#my ($sessionID, $job_name, $job_invoker, $num_work_units) = @_;
|
||||||
|
my $background;
|
||||||
|
ok ($background=C4::BackgroundJob->new);
|
||||||
|
ok ($background->id);
|
||||||
|
|
||||||
|
$background->name("George");
|
||||||
|
is ($background->name, "George", "testing name");
|
||||||
|
|
||||||
|
$background->invoker("enjoys");
|
||||||
|
is ($background->invoker, "enjoys", "testing invoker");
|
||||||
|
|
||||||
|
$background->progress("testing");
|
||||||
|
is ($background->progress, "testing", "testing progress");
|
||||||
|
|
||||||
|
ok ($background->status);
|
||||||
|
|
||||||
|
$background->size("56");
|
||||||
|
is ($background->size, "56", "testing size");
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue