@@ -, +, @@ --- t/Koha_ElasticSearch.t | 23 -------------------- t/db_dependent/Koha_ElasticSearch.t | 23 ++++++++++++++++++++ t/{ => db_dependent}/Koha_ElasticSearch_Indexer.t | 25 +++++++++++----------- .../Koha_SearchEngine_Elasticsearch_Search.t | 25 +++++++++++----------- 4 files changed, 48 insertions(+), 48 deletions(-) delete mode 100644 t/Koha_ElasticSearch.t create mode 100644 t/db_dependent/Koha_ElasticSearch.t rename t/{ => db_dependent}/Koha_ElasticSearch_Indexer.t (58%) rename t/{ => db_dependent}/Koha_SearchEngine_Elasticsearch_Search.t (50%) --- a/t/Koha_ElasticSearch.t +++ a/t/Koha_ElasticSearch.t @@ -1,23 +0,0 @@ -# -#=============================================================================== -# -# FILE: Koha_ElasticSearch.t -# -# DESCRIPTION: -# -# FILES: --- -# BUGS: --- -# NOTES: --- -# AUTHOR: Chris Cormack (rangi), chrisc@catalyst.net.nz -# ORGANIZATION: Koha Development Team -# VERSION: 1.0 -# CREATED: 09/12/13 08:56:44 -# REVISION: --- -#=============================================================================== - -use strict; -use warnings; - -use Test::More tests => 1; # last test to print - -use_ok('Koha::ElasticSearch'); --- a/t/db_dependent/Koha_ElasticSearch.t +++ a/t/db_dependent/Koha_ElasticSearch.t @@ -0,0 +1,23 @@ +# Copyright 2015 Catalyst IT +# +# 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 strict; +use warnings; + +use Test::More tests => 1; # last test to print + +use_ok('Koha::ElasticSearch'); --- a/t/Koha_ElasticSearch_Indexer.t +++ a/t/Koha_ElasticSearch_Indexer.t @@ -1,19 +1,20 @@ +# Copyright 2015 Catalyst IT # -#=============================================================================== # -# FILE: Koha_ElasticSearch_Indexer.t +# This file is part of Koha. # -# DESCRIPTION: +# 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. # -# FILES: --- -# BUGS: --- -# NOTES: --- -# AUTHOR: Chris Cormack (rangi), chrisc@catalyst.net.nz -# ORGANIZATION: Koha Development Team -# VERSION: 1.0 -# CREATED: 09/12/13 08:57:25 -# REVISION: --- -#=============================================================================== +# 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 strict; use warnings; --- a/t/Koha_SearchEngine_Elasticsearch_Search.t +++ a/t/Koha_SearchEngine_Elasticsearch_Search.t @@ -1,20 +1,19 @@ +# Copyright 2015 Catalyst IT # -#=============================================================================== +# This file is part of Koha. # -# FILE: Koha_SearchEngine_Elasticsearch_Search.t +# 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. # -# DESCRIPTION: +# 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. # -# FILES: --- -# BUGS: --- -# NOTES: --- -# AUTHOR: Chris Cormack (rangi), chrisc@catalyst.net.nz -# ORGANIZATION: Koha Development Team -# VERSION: 1.0 -# CREATED: 09/12/13 09:43:29 -# REVISION: --- -#=============================================================================== - +# You should have received a copy of the GNU General Public License +# along with Koha; if not, see . use strict; use warnings; --