From 3e51d1bc039e580a755834b0d0ea9d0752976165 Mon Sep 17 00:00:00 2001 From: Ted Bowman <ted+git@tedbow.com> Date: Sat, 14 Oct 2023 16:12:28 -0400 Subject: [PATCH] Contrib: copy generic test to module - https://git.drupalcode.org/project/automatic_updates/-/commit/df5b2f78520843e8d96c1edf37292c6ed1df1945 --- .../tests/src/Functional/GenericTest.php | 12 ++++++++++++ .../tests/src/Functional/GenericTest.php | 12 ++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 core/modules/auto_updates/tests/src/Functional/GenericTest.php create mode 100644 core/modules/package_manager/tests/src/Functional/GenericTest.php diff --git a/core/modules/auto_updates/tests/src/Functional/GenericTest.php b/core/modules/auto_updates/tests/src/Functional/GenericTest.php new file mode 100644 index 000000000000..c237089eeef6 --- /dev/null +++ b/core/modules/auto_updates/tests/src/Functional/GenericTest.php @@ -0,0 +1,12 @@ +<?php + +namespace Drupal\Tests\auto_updates\Functional; + +use Drupal\Tests\system\Functional\Module\GenericModuleTestBase; + +/** + * Generic module test for auto_updates. + * + * @group auto_updates + */ +class GenericTest extends GenericModuleTestBase {} diff --git a/core/modules/package_manager/tests/src/Functional/GenericTest.php b/core/modules/package_manager/tests/src/Functional/GenericTest.php new file mode 100644 index 000000000000..108e515d4928 --- /dev/null +++ b/core/modules/package_manager/tests/src/Functional/GenericTest.php @@ -0,0 +1,12 @@ +<?php + +namespace Drupal\Tests\package_manager\Functional; + +use Drupal\Tests\system\Functional\Module\GenericModuleTestBase; + +/** + * Generic module test for package_manager. + * + * @group package_manager + */ +class GenericTest extends GenericModuleTestBase {} -- GitLab