Bug 31593: Remove Test::DBIx::Class from Context.t
No need to keep it. Fixing a test description too. Test plan: Run t/db_dependent/Context.t Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
a4dc5250a2
commit
499562f0b8
1 changed files with 2 additions and 2 deletions
|
@ -52,7 +52,8 @@ $dbh->rollback;
|
|||
ok($koha = C4::Context->new, 'C4::Context->new');
|
||||
my @keys = keys %$koha;
|
||||
my $width = 0;
|
||||
if (ok(@keys)) {
|
||||
ok( @keys, 'Expecting entries in context hash' );
|
||||
if( @keys ) {
|
||||
$width = (sort {$a <=> $b} map {length} @keys)[-1];
|
||||
}
|
||||
foreach (sort @keys) {
|
||||
|
@ -64,7 +65,6 @@ foreach (sort @keys) {
|
|||
ok($config = $koha->{config}, 'Getting $koha->{config} ');
|
||||
|
||||
# Testing syspref caching
|
||||
use Test::DBIx::Class;
|
||||
|
||||
my $schema = Koha::Database->new()->schema();
|
||||
$schema->storage->debug(1);
|
||||
|
|
Loading…
Reference in a new issue