X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=web%2Fcore%2Fmodules%2Fsystem%2Fsrc%2FTests%2FInstaller%2FInstallerConfigDirectorySetNoDirectoryTest.php;fp=web%2Fcore%2Fmodules%2Fsystem%2Fsrc%2FTests%2FInstaller%2FInstallerConfigDirectorySetNoDirectoryTest.php;h=0000000000000000000000000000000000000000;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hp=11febf2d6f0a30007bbf88a589e22a55c5a33bd5;hpb=74df008bdbb3a11eeea356744f39b802369bda3c;p=yaffs-website diff --git a/web/core/modules/system/src/Tests/Installer/InstallerConfigDirectorySetNoDirectoryTest.php b/web/core/modules/system/src/Tests/Installer/InstallerConfigDirectorySetNoDirectoryTest.php deleted file mode 100644 index 11febf2d6..000000000 --- a/web/core/modules/system/src/Tests/Installer/InstallerConfigDirectorySetNoDirectoryTest.php +++ /dev/null @@ -1,49 +0,0 @@ -syncDirectory = $this->publicFilesDirectory . '/config_' . Crypt::randomBytesBase64() . '/sync'; - $this->settings['config_directories'][CONFIG_SYNC_DIRECTORY] = (object) [ - 'value' => $this->syncDirectory, - 'required' => TRUE, - ]; - // Other directories will be created too. - $this->settings['config_directories']['custom'] = (object) [ - 'value' => $this->publicFilesDirectory . '/config_custom', - 'required' => TRUE, - ]; - parent::setUp(); - } - - /** - * Verifies that installation succeeded. - */ - public function testInstaller() { - $this->assertUrl('user/1'); - $this->assertResponse(200); - $this->assertTrue(file_exists($this->syncDirectory) && is_dir($this->syncDirectory), "The directory {$this->syncDirectory} exists."); - $this->assertTrue(file_exists($this->publicFilesDirectory . '/config_custom') && is_dir($this->publicFilesDirectory . '/config_custom'), "The directory {$this->publicFilesDirectory}/custom_config exists."); - } - -}