Browse Source

Bug 21912: (QA follow-up) Do not delete existing patrons

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
19.05.x
Tomás Cohen Arazi 6 years ago
committed by Nick Clemens
parent
commit
8e6c789255
  1. 4
      t/db_dependent/Koha/Objects.t

4
t/db_dependent/Koha/Objects.t

@ -261,7 +261,7 @@ subtest '->search() tests' => sub {
$schema->storage->txn_begin;
Koha::Patrons->delete;
my $count = Koha::Patrons->search->count;
# Create 10 patrons
foreach (1..10) {
@ -271,7 +271,7 @@ subtest '->search() tests' => sub {
my $patrons = Koha::Patrons->search();
is( ref($patrons), 'Koha::Patrons', 'search in scalar context returns the Koha::Object-based type' );
my @patrons = Koha::Patrons->search();
is( scalar @patrons, 10, 'search in list context returns a list of objects' );
is( scalar @patrons, $count + 10, 'search in list context returns a list of objects' );
my $i = 0;
foreach (1..10) {
is( ref($patrons[$i]), 'Koha::Patron', 'Objects in the list have the singular type' );

Loading…
Cancel
Save