Bugzilla – Attachment 122486 Details for
Bug 28636
t:lib::Mocks is missing POD
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28636: Add POD to t:lib::Mocks
Bug-28636-Add-POD-to-tlibMocks.patch (text/plain), 3.12 KB, created by
Martin Renvoize (ashimema)
on 2021-06-29 08:12:48 UTC
(
hide
)
Description:
Bug 28636: Add POD to t:lib::Mocks
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2021-06-29 08:12:48 UTC
Size:
3.12 KB
patch
obsolete
>From c44f3add9aebf0c3f8da3202a1a3eff0a40ee996 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Tue, 22 Jun 2021 17:32:20 -0300 >Subject: [PATCH] Bug 28636: Add POD to t:lib::Mocks > >There's no POD. This patch adds it. I wrote it as part of bug 28615 but >then it took another direction, so submitting here. > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > t/lib/Mocks.pm | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 72 insertions(+) > >diff --git a/t/lib/Mocks.pm b/t/lib/Mocks.pm >index 17d54f1a53..a2404647c0 100644 >--- a/t/lib/Mocks.pm >+++ b/t/lib/Mocks.pm >@@ -1,11 +1,46 @@ > package t::lib::Mocks; > >+# 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 C4::Context; > > use Test::MockModule; >+use Test::MockObject; >+ >+=head1 NAME >+ >+t::lib::Mocks - A library to mock things for testing >+ >+=head1 API >+ >+=head2 Methods >+ >+=cut > > my %configs; >+ >+=head3 mock_config >+ >+ t::lib::Mocks::mock_config( $config_entry, $value ); >+ >+Mock the configuration I<$config_entry> with the specified I<$value>. >+ >+=cut >+ > sub mock_config { > my $context = Test::MockModule->new('C4::Context'); > my ( $conf, $value ) = @_; >@@ -22,6 +57,15 @@ sub mock_config { > } > > my %preferences; >+ >+=head3 mock_preference >+ >+ t::lib::Mocks::mock_preference( $preference, $value ); >+ >+Mock the I<$preference> with the specified I<value>. >+ >+=cut >+ > sub mock_preference { > my ( $pref, $value ) = @_; > >@@ -40,6 +84,34 @@ sub mock_preference { > }); > } > >+=head3 mock_userenv >+ >+ t::lib::Mocks::mock_userenv( >+ { >+ [ patron => $patron, >+ borrowernumber => $borrowernumber, >+ userid => $userid, >+ cardnumber => $cardnumber, >+ firstname => $firstname, >+ surname => $surname, >+ branchcode => $branchcode, >+ branchname => $branchname, >+ flags => $flags, >+ emailaddress => $emailaddress, >+ desk_id => $desk_id, >+ desk_name => $desk_name, >+ register_id => $register_id, >+ register_name => $register_name, ] >+ } >+ ); >+ >+Mock userenv in the context of tests. A I<patron> param is usually expected, but >+some other session attributes might be passed as well, that will override the patron's. >+ >+Also, some sane defaults are set if no parameters are passed. >+ >+=cut >+ > sub mock_userenv { > my ( $params ) = @_; > >-- >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 28636
:
122479
| 122486