Skip to content
Snippets Groups Projects
Commit 31175037 authored by Jess's avatar Jess
Browse files

Issue #3084493 by catch, Lendude, dww, tedbow, Mile23, xjm: Fully deprecate...

Issue #3084493 by catch, Lendude, dww, tedbow, Mile23, xjm: Fully deprecate and prepare for removal of SimpleTest module
parent 04711e23
No related branches found
No related tags found
6 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!1012Issue #3226887: Hreflang on non-canonical content pages,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10,!596Issue #3046532: deleting an entity reference field, used in a contextual view, makes the whole site unrecoverable,!496Issue #2463967: Use .user.ini file for PHP settings,!144Issue #2666286: Clean up menu_ui to conform to Drupal coding standards
......@@ -22,6 +22,12 @@
function simpletest_requirements($phase) {
$requirements = [];
$requirements['deprecation'] = [
'title' => t('Testing (SimpleTest)'),
'value' => t('The <em>Testing</em> (SimpleTest) module is deprecated for removal in Drupal 9. It should not be enabled on production sites. Read <a href="https://www.drupal.org/node/3091784">The Drupal core SimpleTest module is deprecated</a> for alternative ways to run tests during development.'),
'severity' => $phase === 'runtime' ? REQUIREMENT_WARNING : REQUIREMENT_INFO,
];
$has_phpunit = class_exists(TestCase::class);
$has_curl = function_exists('curl_init');
......
......@@ -384,7 +384,6 @@ public function testUpdatedSite() {
'search',
'serialization',
'shortcut',
'simpletest',
'statistics',
'syslog',
'system',
......
......@@ -386,7 +386,6 @@ public function testUpdatedSite() {
'search',
'serialization',
'shortcut',
'simpletest',
'statistics',
'syslog',
'system',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment