From c780bf1e6959cdabbce5f21984bd1747cc94689f Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 17 Jul 2018 15:55:16 -0300 Subject: [PATCH] Bug 15836: Add tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian Stelzenmüller --- 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 . + +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