Lines 36-42
$schema->storage->txn_begin;
Link Here
|
36 |
|
36 |
|
37 |
my $builder = t::lib::TestBuilder->new; |
37 |
my $builder = t::lib::TestBuilder->new; |
38 |
my $library = $builder->build( { source => 'Branch' } ); |
38 |
my $library = $builder->build( { source => 'Branch' } ); |
39 |
my $patron = $builder->build( { source => 'Borrower', values => { branchcode => $library->{branchcode} } } ); |
39 |
my $patron = $builder->build( { source => 'Borrower', value => { branchcode => $library->{branchcode} } } ); |
40 |
my $patron_2 = $builder->build( { source => 'Borrower' } ); |
40 |
my $patron_2 = $builder->build( { source => 'Borrower' } ); |
41 |
my $nb_of_logaction = get_nb_of_logactions(); |
41 |
my $nb_of_logaction = get_nb_of_logactions(); |
42 |
my $nb_of_messages = Koha::Patron::Messages->search->count; |
42 |
my $nb_of_messages = Koha::Patron::Messages->search->count; |
43 |
- |
|
|