Koha/t/db_dependent/lib/KohaTest/Biblio.pm
Tomas Cohen Arazi 4dcee58a4d Bug 7440 - Remove NoZebra vestiges
Removed NoZebra vestiges. This comprises several code blocks that depend on the NoZebra syspref and NZ related functions/methods.

C4::Biblio->
 GetNoZebraIndexes
 _DelBiblioNoZebra
 _AddBiblioNoZebra

C4::Search->
 NZgetRecords
 NZanalyse
 NZoperatorAND
 NZoperatorOR
 NZoperatorNOT
 NZorder

C4::Installer->
 set_indexing_engine

Sponsored-by: Universidad Nacional de Córdoba
Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>

Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
2013-03-19 21:17:04 -04:00

66 lines
2.1 KiB
Perl

package KohaTest::Biblio;
use base qw( KohaTest );
use strict;
use warnings;
use Test::More;
use C4::Biblio;
sub testing_class { 'C4::Biblio' };
sub methods : Test( 1 ) {
my $self = shift;
my @methods = qw(
AddBiblio
ModBiblio
ModBiblioframework
DelBiblio
LinkBibHeadingsToAuthorities
GetBiblioData
GetBiblioItemData
GetBiblioItemByBiblioNumber
GetBiblioFromItemNumber
GetBiblio
GetBiblioItemInfosOf
GetMarcStructure
GetUsedMarcStructure
GetMarcFromKohaField
GetMarcBiblio
GetXmlBiblio
GetAuthorisedValueDesc
GetMarcNotes
GetMarcSubjects
GetMarcAuthors
GetMarcUrls
GetMarcSeries
GetFrameworkCode
GetPublisherNameFromIsbn
TransformKohaToMarc
TransformHtmlToXml
TransformHtmlToMarc
TransformMarcToKoha
_get_inverted_marc_field_map
_disambiguate
get_koha_field_from_marc
TransformMarcToKohaOneField
ModZebra
_find_value
_koha_marc_update_bib_ids
_koha_marc_update_biblioitem_cn_sort
_koha_add_biblio
_koha_modify_biblio
_koha_modify_biblioitem_nonmarc
_koha_add_biblioitem
_koha_delete_biblio
_koha_delete_biblioitems
ModBiblioMarc
get_biblio_authorised_values
);
can_ok( $self->testing_class, @methods );
}
1;