View | Details | Raw Unified | Return to bug 12478
Collapse All | Expand All

(-)a/t/Koha_ElasticSearch.t (-23 lines)
Lines 1-23 Link Here
1
#
2
#===============================================================================
3
#
4
#         FILE: Koha_ElasticSearch.t
5
#
6
#  DESCRIPTION:
7
#
8
#        FILES: ---
9
#         BUGS: ---
10
#        NOTES: ---
11
#       AUTHOR: Chris Cormack (rangi), chrisc@catalyst.net.nz
12
# ORGANIZATION: Koha Development Team
13
#      VERSION: 1.0
14
#      CREATED: 09/12/13 08:56:44
15
#     REVISION: ---
16
#===============================================================================
17
18
use strict;
19
use warnings;
20
21
use Test::More tests => 1;                      # last test to print
22
23
use_ok('Koha::ElasticSearch');
(-)a/t/db_dependent/Koha_ElasticSearch.t (+23 lines)
Line 0 Link Here
1
# Copyright 2015 Catalyst IT
2
#
3
# This file is part of Koha.
4
#
5
# Koha is free software; you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 3 of the License, or
8
# (at your option) any later version.
9
#
10
# Koha is distributed in the hope that it will be useful, but
11
# WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
# GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with Koha; if not, see <http://www.gnu.org/licenses>
17
18
use strict;
19
use warnings;
20
21
use Test::More tests => 1;                      # last test to print
22
23
use_ok('Koha::ElasticSearch');
(-)a/t/Koha_ElasticSearch_Indexer.t (-12 / +13 lines)
Lines 1-19 Link Here
1
# Copyright 2015 Catalyst IT
1
#
2
#
2
#===============================================================================
3
#
3
#
4
#         FILE: Koha_ElasticSearch_Indexer.t
4
# This file is part of Koha.
5
#
5
#
6
#  DESCRIPTION:
6
# Koha is free software; you can redistribute it and/or modify it
7
# under the terms of the GNU General Public License as published by
8
# the Free Software Foundation; either version 3 of the License, or
9
# (at your option) any later version.
7
#
10
#
8
#        FILES: ---
11
# Koha is distributed in the hope that it will be useful, but
9
#         BUGS: ---
12
# WITHOUT ANY WARRANTY; without even the implied warranty of
10
#        NOTES: ---
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
#       AUTHOR: Chris Cormack (rangi), chrisc@catalyst.net.nz
14
# GNU General Public License for more details.
12
# ORGANIZATION: Koha Development Team
15
#
13
#      VERSION: 1.0
16
# You should have received a copy of the GNU General Public License
14
#      CREATED: 09/12/13 08:57:25
17
# along with Koha; if not, see <http://www.gnu.org/licenses>.
15
#     REVISION: ---
16
#===============================================================================
17
18
18
use strict;
19
use strict;
19
use warnings;
20
use warnings;
(-)a/t/Koha_SearchEngine_Elasticsearch_Search.t (-14 / +12 lines)
Lines 1-20 Link Here
1
# Copyright 2015 Catalyst IT
1
#
2
#
2
#===============================================================================
3
# This file is part of Koha.
3
#
4
#
4
#         FILE: Koha_SearchEngine_Elasticsearch_Search.t
5
# Koha is free software; you can redistribute it and/or modify it
6
# under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 3 of the License, or
8
# (at your option) any later version.
5
#
9
#
6
#  DESCRIPTION:
10
# Koha is distributed in the hope that it will be useful, but
11
# WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
# GNU General Public License for more details.
7
#
14
#
8
#        FILES: ---
15
# You should have received a copy of the GNU General Public License
9
#         BUGS: ---
16
# along with Koha; if not, see <http://www.gnu.org/licenses>.
10
#        NOTES: ---
11
#       AUTHOR: Chris Cormack (rangi), chrisc@catalyst.net.nz
12
# ORGANIZATION: Koha Development Team
13
#      VERSION: 1.0
14
#      CREATED: 09/12/13 09:43:29
15
#     REVISION: ---
16
#===============================================================================
17
18
use strict;
17
use strict;
19
use warnings;
18
use warnings;
20
19
21
- 

Return to bug 12478