Bug 23599: Regression tests
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
parent
16399fd236
commit
92b16c8e5f
1 changed files with 4 additions and 2 deletions
|
@ -27,7 +27,6 @@ use Test::Exception;
|
|||
|
||||
use C4::Context;
|
||||
use Koha::Database;
|
||||
use Koha::Patron::Attribute::Type;
|
||||
use Koha::Patron::Attribute::Types;
|
||||
|
||||
my $schema = Koha::Database->new->schema;
|
||||
|
@ -289,7 +288,7 @@ subtest 'replace_library_limits() tests' => sub {
|
|||
|
||||
subtest 'search_with_library_limits() tests' => sub {
|
||||
|
||||
plan tests => 3;
|
||||
plan tests => 4;
|
||||
|
||||
$schema->storage->txn_begin;
|
||||
|
||||
|
@ -326,6 +325,9 @@ subtest 'search_with_library_limits() tests' => sub {
|
|||
3, '3 attribute types are available for the specified branch' );
|
||||
is( Koha::Patron::Attribute::Types->search_with_library_limits( {}, {}, $branch_2 )->count,
|
||||
3, '3 attribute types are available for the specified branch' );
|
||||
is( Koha::Patron::Attribute::Types->search_with_library_limits( {}, {}, undef )->count,
|
||||
4, '4 attribute types are available with no library passed'
|
||||
);
|
||||
|
||||
$schema->storage->txn_rollback;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue