Bugzilla – Attachment 88513 Details for
Bug 22694
Add a method for checking OpacHiddenItems exceptions in Koha::Patron::Category
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22694: Unit tests
Bug-22694-Unit-tests.patch (text/plain), 1.80 KB, created by
Martin Renvoize (ashimema)
on 2019-04-23 14:50:30 UTC
(
hide
)
Description:
Bug 22694: Unit tests
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2019-04-23 14:50:30 UTC
Size:
1.80 KB
patch
obsolete
>From 180ebcbb065c74444ab4c3b31772440aa69880e0 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Fri, 12 Apr 2019 10:42:30 -0300 >Subject: [PATCH] Bug 22694: Unit tests > >Signed-off-by: Bin Wen <bin.wen@inlibro.com> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > t/db_dependent/Koha/Patron/Category.t | 24 +++++++++++++++++++++++- > 1 file changed, 23 insertions(+), 1 deletion(-) > >diff --git a/t/db_dependent/Koha/Patron/Category.t b/t/db_dependent/Koha/Patron/Category.t >index 06fe7ecace..7f8e779802 100644 >--- a/t/db_dependent/Koha/Patron/Category.t >+++ b/t/db_dependent/Koha/Patron/Category.t >@@ -19,7 +19,7 @@ > > use Modern::Perl; > >-use Test::More tests => 2; >+use Test::More tests => 3; > > use t::lib::TestBuilder; > use t::lib::Mocks; >@@ -144,3 +144,25 @@ subtest 'effective_change_password() tests' => sub { > $schema->storage->txn_rollback; > }; > }; >+ >+subtest 'override_hidden_items() tests' => sub { >+ >+ plan tests => 4; >+ >+ $schema->storage->txn_begin; >+ >+ my $category_1 = $builder->build_object({ class => 'Koha::Patron::Categories' }); >+ my $category_2 = $builder->build_object({ class => 'Koha::Patron::Categories' }); >+ >+ t::lib::Mocks::mock_preference( 'OpacHiddenItemsExceptions', $category_1->categorycode . '|' . $category_2->categorycode . '|RANDOM' ); >+ >+ ok( $category_1->override_hidden_items, 'Category configured to override' ); >+ ok( $category_2->override_hidden_items, 'Category configured to override' ); >+ >+ t::lib::Mocks::mock_preference( 'OpacHiddenItemsExceptions', 'RANDOM|' . $category_2->categorycode ); >+ >+ ok( !$category_1->override_hidden_items, 'Category not configured to override' ); >+ ok( $category_2->override_hidden_items, 'Category configured to override' ); >+ >+ $schema->storage->txn_rollback; >+}; >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 22694
:
87908
|
87909
|
88509
|
88510
| 88513 |
88514