mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-06 21:58:01 -04:00
21 lines
443 B
Perl
21 lines
443 B
Perl
# Test that everything compiles, so the rest of the test suite can
|
|
# load modules without having to check if it worked.
|
|
|
|
use strict;
|
|
use warnings;
|
|
use Test::More;
|
|
|
|
use lib "t/lib";
|
|
|
|
use_ok('DBI');
|
|
use_ok('DBD::SQLite');
|
|
use_ok('SQLiteTest');
|
|
|
|
diag("\$DBI::VERSION=$DBI::VERSION");
|
|
|
|
if (my @compile_options = DBD::SQLite::compile_options()) {
|
|
diag("Compile Options:");
|
|
diag(join "", map { " $_\n" } @compile_options);
|
|
}
|
|
|
|
done_testing;
|