Gush\Tests\ConfigFactoryTest::testCreateConfigWithGushHomeNotExisting PHP Метод

testCreateConfigWithGushHomeNotExisting() публичный Метод

    public function testCreateConfigWithGushHomeNotExisting()
    {
        $config = ConfigFactory::createConfig();
        $this->assertFileExists($this->homedir . '/cache/.htaccess');
        $this->assertFileExists($this->homedir . '/.htaccess');
        $this->assertEquals(['adapters' => [], 'home' => $this->homedir, 'home_config' => $this->homedir . '/.gush.yml'], $config->toArray());
    }