Bug 24584: Rewrite optional/sample_libraries to YAML

YAML version of optional sample_libraries

To test:
1) Same test plan of first patch, only check table
   branches

Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
This commit is contained in:
Bernardo Gonzalez Kriegel 2020-02-05 09:42:17 -03:00 committed by Martin Renvoize
parent e49f3ce3ab
commit c5ac1d23f2
Signed by: martin.renvoize
GPG key ID: 422B469130441A0F
3 changed files with 75 additions and 17 deletions

View file

@ -1,16 +0,0 @@
INSERT INTO branches ( `branchcode`,`branchname`,`branchaddress1`) VALUES
('MPL','Midway','372 Forest Street'),
('SPL','Springfield','Highland Boulevard'),
('RPL','Riverside','Johnson Terrace'),
('CPL','Centerville','Jefferson Summit'),
('FPL','Fairview','Hickory Squere'),
('FFL','Fairfield','River Station'),
('IPT','Institut Protestant de Théologie',''),
('PVL','Pleasant Valley','Meadow Grove'),
('TPL','Troy','Valley Way'),
('FRL','Franklin','Smith Heights'),
('LPL','Liberty','East Hills'),
('UPL','Union','Chestnut Hollow')
;

View file

@ -1 +0,0 @@
Sample libraries.

View file

@ -0,0 +1,75 @@
---
#
# Copyright 2020 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 2 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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
description:
- "Sample libraries."
tables:
- branches:
translatable: [ ]
multiline: []
rows:
- branchcode: MPL
branchname: "Midway"
branchaddress1: "372 Forest Street"
- branchcode: SPL
branchname: "Springfield"
branchaddress1: "Highland Boulevard"
- branchcode: RPL
branchname: "Riverside"
branchaddress1: "Johnson Terrace"
- branchcode: CPL
branchname: "Centerville"
branchaddress1: "Jefferson Summit"
- branchcode: FPL
branchname: "Fairview"
branchaddress1: "Hickory Squere"
- branchcode: FFL
branchname: "Fairfield"
branchaddress1: "River Station"
- branchcode: IPT
branchname: "Institut Protestant de Théologie"
branchaddress1: ""
- branchcode: PVL
branchname: "Pleasant Valley"
branchaddress1: "Meadow Grove"
- branchcode: TPL
branchname: "Troy"
branchaddress1: "Valley Way"
- branchcode: FRL
branchname: "Franklin"
branchaddress1: "Smith Heights"
- branchcode: LPL
branchname: "Liberty"
branchaddress1: "East Hills"
- branchcode: UPL
branchname: "Union"
branchaddress1: "Chestnut Hollow"