X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=web%2Fcore%2Fmodules%2Fsystem%2Fsrc%2FTests%2FUpdate%2FInstallProfileSystemInstall8300Test.php;fp=web%2Fcore%2Fmodules%2Fsystem%2Fsrc%2FTests%2FUpdate%2FInstallProfileSystemInstall8300Test.php;h=0000000000000000000000000000000000000000;hb=9917807b03b64faf00f6a1f29dcb6eafc454efa5;hp=f0eabd62ecfb195ef2baa023096c4d69cbcad96e;hpb=aea91e65e895364e460983b890e295aa5d5540a5;p=yaffs-website diff --git a/web/core/modules/system/src/Tests/Update/InstallProfileSystemInstall8300Test.php b/web/core/modules/system/src/Tests/Update/InstallProfileSystemInstall8300Test.php deleted file mode 100644 index f0eabd62e..000000000 --- a/web/core/modules/system/src/Tests/Update/InstallProfileSystemInstall8300Test.php +++ /dev/null @@ -1,40 +0,0 @@ -databaseDumpFiles = [ - __DIR__ . '/../../../tests/fixtures/update/drupal-8.bare.standard.php.gz', - ]; - } - - /** - * Ensures that the system_update_8300() runs as expected. - */ - public function testUpdate() { - // Ensure the BC layers work and settings.php and configuration is in the - // expected state before updating. - $this->assertEqual('standard', \Drupal::installProfile()); - $this->assertEqual('standard', Settings::get('install_profile'), 'The install profile has not been written to settings.php.'); - $this->assertFalse($this->config('core.extension')->get('profile'), 'The install profile is not present in core.extension configuration.'); - - $this->runUpdates(); - // Confirm that Drupal recognizes this distribution as the current profile. - $this->assertEqual('standard', \Drupal::installProfile()); - $this->assertEqual('standard', Settings::get('install_profile'), 'The install profile has not been written to settings.php.'); - $this->assertEqual('standard', $this->config('core.extension')->get('profile'), 'The install profile has been written to core.extension configuration.'); - } - -}