summaryrefslogtreecommitdiffstats
path: root/t/001compile.t
diff options
context:
space:
mode:
Diffstat (limited to 't/001compile.t')
-rw-r--r--t/001compile.t5
1 files changed, 2 insertions, 3 deletions
diff --git a/t/001compile.t b/t/001compile.t
index a546e40ad..da95b7327 100644
--- a/t/001compile.t
+++ b/t/001compile.t
@@ -14,7 +14,7 @@ use 5.10.1;
use strict;
use warnings;
-use lib qw(. lib t);
+use lib qw(. lib local/lib/perl5 t);
use Config;
use Support::Files;
use Test::More tests => scalar(@Support::Files::testitems)
@@ -86,8 +86,7 @@ foreach my $file (@testitems) {
and $file ne "Bugzilla/DB/Schema.pm")
{
my $module = lc($1);
- my $dbd = DB_MODULE->{$module}->{dbd}->{module};
- eval("use $dbd; 1") or skip "$file: $dbd not installed", 1;
+ Bugzilla->feature($module) or skip "$file: Driver for $module not installed", 1;
}
compile_file($file);