org\bovigo\vfs\vfsStreamWrapperMkDirTestCase::rmdirCanRemoveEmptyDirectoryWithDot PHP Метод

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

    public function rmdirCanRemoveEmptyDirectoryWithDot()
    {
        vfsStream::newDirectory('empty')->at($this->foo);
        $this->assertTrue($this->foo->hasChild('empty'));
        $this->assertTrue(rmdir($this->fooURL . '/empty/.'));
        $this->assertFalse($this->foo->hasChild('empty'));
    }