1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00
DBD-SQLite-SQLcipher/t/00compile.t
2009-04-03 15:22:38 +00:00

18 lines
321 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 => 4;
ok( $] >= 5.005, 'Perl version is new enough' );
use_ok('DBI');
use_ok('DBD::SQLite');
use_ok('t::lib::Test');