public function BestPracticesReportCase::testFast404Three in Site Audit 8.2
If fast_404 is disabled, check should warn.
File
- tests/
bestPracticesReportTest.php, line 64 - Contains /site_audit/tests/BestPracticesReportCase.
Class
- BestPracticesReportCase
- Class BestPracticesReportCase.
Namespace
UnishCode
public function testFast404Three() {
$eval1 = <<<EOT
\$config = \\Drupal::configFactory()->getEditable('system.performance');
\$config->set('fast_404.enabled', FALSE);
\$config->save();
EOT;
$this
->drush('php-eval', array(
$eval1,
), $this->options);
$this
->drush('audit-best-practices', array(), $this->options + array(
'detail' => NULL,
'json' => NULL,
));
$output = json_decode($this
->getOutput());
$this
->assertEquals(\SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_WARN, $output->checks->SiteAuditCheckBestPracticesFast404->score);
}