AutomatedCronUpdateWithoutAutomatedCronTest.php
Namespace
Drupal\Tests\system\Functional\UpdateFile
-
core/
modules/ system/ tests/ src/ Functional/ Update/ AutomatedCronUpdateWithoutAutomatedCronTest.php
View source
<?php
namespace Drupal\Tests\system\Functional\Update;
use Drupal\FunctionalTests\Update\UpdatePathTestBase;
/**
* Ensures that the automated cron module is not installed on update.
*
* @group Update
* @group legacy
*/
class AutomatedCronUpdateWithoutAutomatedCronTest extends UpdatePathTestBase {
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* {@inheritdoc}
*/
protected function setDatabaseDumpFiles() {
$this->databaseDumpFiles = [
__DIR__ . '/../../../../tests/fixtures/update/drupal-8.bare.standard.php.gz',
__DIR__ . '/../../../../tests/fixtures/update/drupal-8.without_automated_cron.php',
];
}
/**
* Ensures that automated cron module isn't installed and the config migrated.
*/
public function testUpdate() {
$this->runUpdates();
$module_data = \Drupal::config('core.extension')->get('module');
$this->assertFalse(isset($module_data['automated_cron']), 'The automated cron module was not installed.');
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
AutomatedCronUpdateWithoutAutomatedCronTest | Ensures that the automated cron module is not installed on update. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.