b14d77dcf2
This allows the tests to work when INSTALL_LOCATION is set.
13 lines
184 B
Gnuplot
13 lines
184 B
Gnuplot
#!/usr/bin/perl
|
|
|
|
use lib '../..';
|
|
|
|
use Test::More tests => 2;
|
|
|
|
use DBD::Driver;
|
|
|
|
my $drv = DBD::Driver->new('test');
|
|
isa_ok $drv, 'DBD::Driver';
|
|
is $drv->name, 'test', 'Driver name';
|
|
|