File: 00-base.t

package info (click to toggle)
libdbd-firebird-perl 1.24-1%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 728 kB
  • sloc: perl: 4,419; ansic: 2,367; makefile: 12
file content (25 lines) | stat: -rw-r--r-- 536 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# Test that everything compiles, so the rest of the test suite can
# load modules without having to check if it worked.
#
# 2011-01-29 stefan(s.bv.)
# Stolen from DBD::SQLite ;)
#

use strict;
BEGIN {
    $|  = 1;
    $^W = 1;
}

use Test::More tests => 7;

use_ok('DBI');

use_ok('DBD::Firebird');
use_ok('DBD::Firebird::GetInfo');
use_ok('DBD::Firebird::TableInfo');
use_ok('DBD::Firebird::TableInfo::Basic');
use_ok('DBD::Firebird::TableInfo::Firebird21');
use_ok('DBD::Firebird::TypeInfo');

# diag("\$DBI::VERSION=$DBI::VERSION");