Bugzilla – Attachment 86509 Details for
Bug 22454
Add Koha::Item::hidden_in_opac method
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22454: Unit tests
Bug-22454-Unit-tests.patch (text/plain), 2.19 KB, created by
Josef Moravec
on 2019-03-12 10:12:56 UTC
(
hide
)
Description:
Bug 22454: Unit tests
Filename:
MIME Type:
Creator:
Josef Moravec
Created:
2019-03-12 10:12:56 UTC
Size:
2.19 KB
patch
obsolete
>From 0e57541289d00652084afcec882e985f0f3072ff Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Tue, 5 Mar 2019 09:44:40 -0300 >Subject: [PATCH] Bug 22454: Unit tests > >Signed-off-by: Michal Denar <black23@gmail.com> > >Signed-off-by: Josef Moravec <josef.moravec@gmail.com> >--- > t/db_dependent/Koha/Item.t | 52 ++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 52 insertions(+) > create mode 100644 t/db_dependent/Koha/Item.t > >diff --git a/t/db_dependent/Koha/Item.t b/t/db_dependent/Koha/Item.t >new file mode 100644 >index 0000000000..62c648ff5b >--- /dev/null >+++ b/t/db_dependent/Koha/Item.t >@@ -0,0 +1,52 @@ >+#!/usr/bin/perl >+ >+# Copyright 2019 Koha Development team >+# >+# This file is part of Koha >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use Test::More tests => 1; >+ >+use Koha::Items; >+use Koha::Database; >+ >+use t::lib::TestBuilder; >+use t::lib::Mocks; >+ >+my $schema = Koha::Database->new->schema; >+my $builder = t::lib::TestBuilder->new; >+ >+subtest 'hidden_in_opac() tests' => sub { >+ >+ plan tests => 3; >+ >+ $schema->storage->txn_begin; >+ >+ my $item = $builder->build_sample_item; >+ my $rules = {}; >+ >+ ok( !$item->hidden_in_opac, 'No rules passed, shouldn\'t hide' ); >+ ok( !$item->hidden_in_opac({ rules => $rules }), 'Empty rules passed, shouldn\'t hide' ); >+ >+ my $withdrawn = $item->withdrawn + 1; # make sure this attribute doesn't match >+ >+ $rules = { withdrawn => $withdrawn, itype => [ $item->itype ] }; >+ >+ ok( $item->hidden_in_opac({ rules => $rules }), 'Rule matching itype passed, should hide' ); >+ >+ $schema->storage->txn_rollback; >+}; >-- >2.11.0
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 22454
:
86061
|
86062
|
86501
| 86509 |
86510