Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / system / src / Tests / Installer / InstallerExistingConfigDirectoryTest.php
diff --git a/web/core/modules/system/src/Tests/Installer/InstallerExistingConfigDirectoryTest.php b/web/core/modules/system/src/Tests/Installer/InstallerExistingConfigDirectoryTest.php
deleted file mode 100644 (file)
index b06b4ca..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-<?php
-
-namespace Drupal\system\Tests\Installer;
-
-use Drupal\simpletest\InstallerTestBase;
-
-/**
- * Tests the installer when a config_directory has already been set up.
- *
- * @group Installer
- */
-class InstallerExistingConfigDirectoryTest extends InstallerTestBase {
-
-  /**
-   * The expected file perms of the folder.
-   *
-   * @var int
-   */
-  protected $expectedFilePerms;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUp() {
-    mkdir($this->siteDirectory . '/config_read_only', 0444);
-    $this->expectedFilePerms = fileperms($this->siteDirectory . '/config_read_only');
-    $this->settings['config_directories'][CONFIG_SYNC_DIRECTORY] = (object) [
-      'value' => $this->siteDirectory . '/config_read_only',
-      'required' => TRUE,
-    ];
-    parent::setUp();
-  }
-
-  /**
-   * Verifies that installation succeeded.
-   */
-  public function testInstaller() {
-    $this->assertUrl('user/1');
-    $this->assertResponse(200);
-    $this->assertEqual($this->expectedFilePerms, fileperms($this->siteDirectory . '/config_read_only'));
-    $this->assertEqual([], glob($this->siteDirectory . '/config_read_only/*'), 'The sync directory is empty after install because it is read-only.');
-  }
-
-}