Lines 230-235
subtest 'process tests' => sub {
Link Here
|
230 |
my $job = Koha::BackgroundJobs->find($job_id); |
230 |
my $job = Koha::BackgroundJobs->find($job_id); |
231 |
|
231 |
|
232 |
C4::Context->interface('opac'); |
232 |
C4::Context->interface('opac'); |
|
|
233 |
C4::Context->unset_userenv; |
233 |
is( C4::Context->userenv, undef, "Userenv unset prior to calling process"); |
234 |
is( C4::Context->userenv, undef, "Userenv unset prior to calling process"); |
234 |
is( C4::Context->interface, 'opac', "Interface set to opac prior to calling process"); |
235 |
is( C4::Context->interface, 'opac', "Interface set to opac prior to calling process"); |
235 |
|
236 |
|
236 |
- |
|
|