mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 06:38:12 -04:00
18 lines
310 B
Perl
18 lines
310 B
Perl
#!/usr/bin/perl
|
|
|
|
# Test that everything compiles, so the rest of the test suite can
|
|
# load modules without having to check if it worked.
|
|
|
|
use strict;
|
|
BEGIN {
|
|
$| = 1;
|
|
$^W = 1;
|
|
}
|
|
|
|
use Test::More tests => 3;
|
|
|
|
use_ok('DBI');
|
|
use_ok('DBD::SQLite');
|
|
use_ok('t::lib::Test');
|
|
|
|
diag("\$DBI::VERSION=$DBI::VERSION");
|