1 use Test::More tests => 1;
9 my $context = SGN::Context->new;
10 my $conns1 = SGN::Test::db_connections();
11 my $dbh = DBI->connect(@{ $context->dbc_profile }{qw{ dsn user password attributes }});
12 my $conns2 = SGN::Test::db_connections();
13 is($conns1+1, $conns2, "SGN::Test can count db connections");