Bug 31593: Remove Test::DBIx::Class from Context.t
authorMarcel de Rooy <m.de.rooy@rijksmuseum.nl>
Wed, 21 Sep 2022 13:54:54 +0000 (13:54 +0000)
committerTomas Cohen Arazi <tomascohen@theke.io>
Mon, 3 Oct 2022 14:43:58 +0000 (11:43 -0300)
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>
t/db_dependent/Context.t

index 77a8924..9b954ef 100755 (executable)
@@ -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);