summaryrefslogtreecommitdiff
path: root/install/5.005/DBIx-DBSchema-0.23-5.005kludge/t/load-pg.t
blob: 93fcf4abb6eb1b7de6749823dae2ecf738abaed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
print "1..1\n";
eval "use DBD::Pg 1.32";
if ( length($@) ) {
  print "ok 1 # Skipped: DBD::Pg 1.32 required for Pg";
} else {
  eval "use DBIx::DBSchema::DBD::Pg;";
  if ( length($@) ) {
    print "not ok 1\n";
  } else {
    print "ok 1\n";
  }
}