Mercurial > hg > isophonics-drupal-site
view core/tests/Drupal/FunctionalTests/Installer/TestingProfileInstallTest.php @ 18:af1871eacc83
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:33:08 +0100 |
parents | |
children |
line wrap: on
line source
<?php namespace Drupal\FunctionalTests\Installer; use Drupal\Tests\BrowserTestBase; /** * Tests installing the Testing profile with update notifications on. * * @group Installer */ class TestingProfileInstallTest extends BrowserTestBase { /** * {@inheritdoc} */ protected $profile = 'testing'; /** * Ensure the Update module and its dependencies are installed. */ public function testUpdateModuleInstall() { $this->assertTrue( \Drupal::moduleHandler()->moduleExists('update') && \Drupal::moduleHandler()->moduleExists('file') && \Drupal::moduleHandler()->moduleExists('field'), 'The Update module and its dependencies are installed.' ); } /** * {@inheritdoc} */ protected function installParameters() { $params = parent::installParameters(); $params['forms']['install_configure_form']['enable_update_status_module'] = TRUE; return $params; } }