Bug 14097: Delete table issues before testing
If we delete all biblio DB, we could have some troubles with foreign keys Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com
This commit is contained in:
parent
b44b7224e0
commit
ae5a199a55
1 changed files with 2 additions and 1 deletions
|
@ -18,7 +18,6 @@ use Modern::Perl;
|
|||
use Test::More tests => 552;
|
||||
use t::lib::Mocks qw(mock_preference);
|
||||
use POSIX qw(strftime);
|
||||
use Data::Dumper;
|
||||
|
||||
BEGIN {
|
||||
use_ok('C4::UsageStats');
|
||||
|
@ -42,6 +41,8 @@ can_ok(
|
|||
my $dbh = C4::Context->dbh;
|
||||
$dbh->{AutoCommit} = 0;
|
||||
$dbh->{RaiseError} = 1;
|
||||
|
||||
$dbh->do('DELETE FROM issues');
|
||||
$dbh->do('DELETE FROM biblio');
|
||||
$dbh->do('DELETE FROM items');
|
||||
$dbh->do('DELETE FROM auth_header');
|
||||
|
|
Loading…
Reference in a new issue