From f4b955cfe0ce525490fc32d43f6120898b8cd49d Mon Sep 17 00:00:00 2001 From: Alex Pott Date: Wed, 5 Oct 2022 11:01:50 +0100 Subject: [PATCH] Issue #3260227 by mondrake: Move driver specific database Unit tests to their modules --- .../mysql => modules/mysql/tests/src/Unit}/ConnectionTest.php | 2 +- .../mysql/tests/src/Unit/InstallTasksTest.php} | 4 ++-- .../pgsql/tests/src/Unit/SchemaTest.php} | 4 ++-- .../sqlite/tests/src/Unit}/ConnectionTest.php | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) rename core/{tests/Drupal/Tests/Core/Database/Driver/mysql => modules/mysql/tests/src/Unit}/ConnectionTest.php (98%) rename core/{tests/Drupal/Tests/Core/Database/Driver/mysql/install/TasksTest.php => modules/mysql/tests/src/Unit/InstallTasksTest.php} (96%) rename core/{tests/Drupal/Tests/Core/Database/Driver/pgsql/PostgresqlSchemaTest.php => modules/pgsql/tests/src/Unit/SchemaTest.php} (95%) rename core/{tests/Drupal/Tests/Core/Database/Driver/sqlite => modules/sqlite/tests/src/Unit}/ConnectionTest.php (96%) diff --git a/core/tests/Drupal/Tests/Core/Database/Driver/mysql/ConnectionTest.php b/core/modules/mysql/tests/src/Unit/ConnectionTest.php similarity index 98% rename from core/tests/Drupal/Tests/Core/Database/Driver/mysql/ConnectionTest.php rename to core/modules/mysql/tests/src/Unit/ConnectionTest.php index fcfd6b08860e..878d7672ada4 100644 --- a/core/tests/Drupal/Tests/Core/Database/Driver/mysql/ConnectionTest.php +++ b/core/modules/mysql/tests/src/Unit/ConnectionTest.php @@ -1,6 +1,6 @@