VersionPress\Tests\Automation\WpAutomation::isCorrectlyDownloaded PHP Method

isCorrectlyDownloaded() private method

Checks that clean WP installation is available and downloaded correctly. (Simple implementation for now, just checking some basic paths.)
private isCorrectlyDownloaded ( string $cleanInstallationPath ) : boolean
$cleanInstallationPath string
return boolean
    private function isCorrectlyDownloaded($cleanInstallationPath)
    {
        return is_dir($cleanInstallationPath) && is_file($cleanInstallationPath . '/wp-settings.php');
    }