#!/usr/local/bin/perl -I./t # # $Id: 00base.t,v 1.1 1998/04/22 17:42:33 joe Exp $ # # This is the base test, tries to install the drivers. Should be # executed as the very first test. # use tests; # Base DBD Driver Test print "1..$tests\n"; require DBI; print "ok 1\n"; import DBI; print "ok 2\n"; $switch = DBI->internal; (ref $switch eq 'DBI::dr') ? print "ok 3\n" : print "not ok 3\n"; # This is a special case. install_driver should not normally be used. $drh = DBI->install_driver("DBMaker"); (ref $drh eq 'DBI::dr') ? print "ok 4\n" : print "not ok 4\n"; if ($drh->{Version}) { print "ok 5\n"; if ($verbose) { print "Driver version is ", $drh->{Version}, "\n"; } } BEGIN { $tests = 5 }