HM\BackUpWordPress\Test_Backup_Path::testCustomPath PHP Method

testCustomPath() public method

Setting a writable custom path should override everything
public testCustomPath ( )
    public function testCustomPath()
    {
        $this->path->set_path($this->custom_path);
        $this->assertEquals($this->path->get_custom_path(), $this->custom_path);
        $this->assertEquals(Path::get_path(), wp_normalize_path($this->custom_path));
        $this->assertFileExists($this->path->get_custom_path());
    }