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
|
Description: mark a test as TODO
which fails in our test setup because we have no users
(besides the password-less socket-using root)
in our test database
Origin: vendor
Forwarded: not-needed
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2023-11-10
--- a/t/10connect.t
+++ b/t/10connect.t
@@ -70,10 +70,13 @@
# and $password parameters.
# see https://rt.cpan.org/Ticket/Display.html?id=89835
+TODO: {
+local $TODO = "We don't have a user in our test database.";
eval {$dbh= DBI->connect($test_dsn, $test_user, $test_password,
{ RaiseError => 1, PrintError => 1, AutoCommit => 0,
Username => '4yZ73s9qeECdWi', Password => '64heUGwAsVoNqo' });};
ok($@, 'Username and Password attributes override');
+}
eval {$dbh= DBI->connect($test_dsn, '4yZ73s9qeECdWi', '64heUGwAsVoNqo',
{ RaiseError => 1, PrintError => 1, AutoCommit => 0,
|