summaryrefslogtreecommitdiff
path: root/t/10-drivers.t
diff options
context:
space:
mode:
Diffstat (limited to 't/10-drivers.t')
-rw-r--r--t/10-drivers.t7
1 files changed, 4 insertions, 3 deletions
diff --git a/t/10-drivers.t b/t/10-drivers.t
index 37845c9..403e7ef 100644
--- a/t/10-drivers.t
+++ b/t/10-drivers.t
@@ -15,7 +15,7 @@ my @drivers = (
} Test::Database->drivers()
);
-plan tests => 5 + @drivers * ( 1 + 2 * 12 ) + 2;
+plan tests => 5 + @drivers * ( 1 + 2 * 10 ) + 2;
my $base = 'Test::Database::Driver';
@@ -84,8 +84,9 @@ for my $args (@drivers) {
# driver_dsn, username, password, connection_info
ok( $driver->driver_dsn(), "$desc has a driver_dsn()" );
- ok( defined $driver->username(), "$desc has a username()" );
- ok( defined $driver->password(), "$desc has a password()" );
+ # skip these now that username and password default to undef
+ #ok( defined $driver->username(), "$desc has a username()" );
+ #ok( defined $driver->password(), "$desc has a password()" );
is_deeply(
[ $driver->connection_info() ],
[ map { $driver->$_ } qw< driver_dsn username password > ],