Lines 125-131
$dbh->do('DELETE FROM borrowers');
Link Here
|
125 |
# Disable recording of the staff who checked out an item until we're ready for it |
125 |
# Disable recording of the staff who checked out an item until we're ready for it |
126 |
t::lib::Mocks::mock_preference('RecordStaffUserOnCheckout', 0); |
126 |
t::lib::Mocks::mock_preference('RecordStaffUserOnCheckout', 0); |
127 |
|
127 |
|
128 |
my $module = new Test::MockModule('C4::Context'); |
128 |
my $module = Test::MockModule->new('C4::Context'); |
129 |
|
129 |
|
130 |
my $library = $builder->build({ |
130 |
my $library = $builder->build({ |
131 |
source => 'Branch', |
131 |
source => 'Branch', |
132 |
- |
|
|