You are here

public function ExtensionsReportCase::testDevPass in Site Audit 8.2

Check should pass on a default installation.

File

tests/extensionsReportTest.php, line 28
Contains /site_audit/tests/ExtensionsReportCase.

Class

ExtensionsReportCase
Class ExtensionsReportCase.

Namespace

Unish

Code

public function testDevPass() {
  $this
    ->drush('audit-extensions', array(), $this->options + array(
    'detail' => NULL,
    'json' => NULL,
  ));
  $output = json_decode($this
    ->getOutput());
  $this
    ->assertEquals(\SiteAuditCheckAbstract::AUDIT_CHECK_SCORE_PASS, $output->checks->SiteAuditCheckExtensionsDev->score);
}