From 30a88f2f3404932b929256bdd244c137a93d9417 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Thu, 28 Jan 2016 09:50:13 +0100 Subject: [PATCH] Remove t/db_dependent/Koha/Objects.t The only test here use Koha::Authority::Types and this package is not in 3.22.x Related bugs: 15473 15380 15381 --- t/db_dependent/Koha/Objects.t | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 t/db_dependent/Koha/Objects.t diff --git a/t/db_dependent/Koha/Objects.t b/t/db_dependent/Koha/Objects.t deleted file mode 100644 index 830db76863..0000000000 --- a/t/db_dependent/Koha/Objects.t +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/perl - -# Copyright 2015 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::Authority::Types; -use Koha::Database; - -use t::lib::TestBuilder; - -my $schema = Koha::Database->new->schema; -$schema->storage->txn_begin; - -is( ref(Koha::Authority::Types->find('')), 'Koha::Authority::Type', 'Koha::Objects->find should work if the primary key is an empty string' ); - -$schema->storage->txn_rollback; -1; -- 2.20.1