Bugzilla – Attachment 78796 Details for
Bug 15836
Labels: Offer configuration option for splitting call numbers
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 15836: Add tests
Bug-15836-Add-tests.patch (text/plain), 2.08 KB, created by
Jonathan Druart
on 2018-09-14 22:25:49 UTC
(
hide
)
Description:
Bug 15836: Add tests
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2018-09-14 22:25:49 UTC
Size:
2.08 KB
patch
obsolete
>From 3bd1f9e0fff87c7394421c22dbfccc95dfd61081 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Tue, 17 Jul 2018 15:55:16 -0300 >Subject: [PATCH] Bug 15836: Add tests > >--- > t/db_dependent/Koha/ClassSplitRules.t | 48 +++++++++++++++++++++++++++++++++++ > 1 file changed, 48 insertions(+) > create mode 100644 t/db_dependent/Koha/ClassSplitRules.t > >diff --git a/t/db_dependent/Koha/ClassSplitRules.t b/t/db_dependent/Koha/ClassSplitRules.t >new file mode 100644 >index 0000000000..4f79707516 >--- /dev/null >+++ b/t/db_dependent/Koha/ClassSplitRules.t >@@ -0,0 +1,48 @@ >+#!/usr/bin/perl >+ >+# Copyright 2018 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::Database; >+use Koha::ClassSplitRules; >+use t::lib::TestBuilder; >+ >+my $schema = Koha::Database->new->schema; >+ >+subtest 'store + regexs' => sub { >+ plan tests => 1; >+ $schema->storage->txn_begin; >+ >+ my @regexs = ('s/\s/\n/g', 's/(\s?=)/\n=/g', 's/^(J|K)\n/$1 /'); >+ my $rule = Koha::ClassSplitRule->new( >+ { >+ class_split_rule => 'split_rule', >+ description => 'a_split_test_1', >+ split_routine => 'regex', >+ regexs => \@regexs, >+ } >+ )->store; >+ >+ $rule = Koha::ClassSplitRules->find("split_rule"); >+ is_deeply($rule->regexs, \@regexs, '->new and ->regexs correctly serialized/deserialized the regexs'); >+ >+ $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 15836
:
76691
|
76692
|
76693
|
76694
|
76695
|
76696
|
77061
|
77079
|
77306
|
78791
|
78793
|
78795
|
78796
|
78798
|
78799
|
79029
|
80339
|
80340
|
80341
|
80342
|
80343
|
80344
|
80345
|
80346
|
80347
|
80548
|
80549
|
80550
|
80551
|
80552
|
80553
|
80554
|
80555
|
80556
|
81033
|
81034
|
81035
|
81036
|
81037
|
81038
|
81039
|
81040
|
81041
|
81627
|
81628
|
81629
|
81630
|
81631
|
81632
|
81633
|
81634
|
81635
|
82110
|
82112
|
82113
|
82118
|
82119
|
82120
|
82289
|
82290
|
82291
|
82292
|
82293
|
82294
|
82295
|
82296
|
82297
|
82298
|
82299
|
82300
|
82301
|
82302
|
82317
|
82318
|
82319
|
82321