org\bovigo\vfs\vfsStreamWrapperMkDirTestCase::mkdirNonRecursivelyDifferentPermissions PHP Method

mkdirNonRecursivelyDifferentPermissions() public method

assert that mkdir() creates the correct directory structure
    public function mkdirNonRecursivelyDifferentPermissions()
    {
        $this->assertTrue(mkdir($this->fooURL . '/another', 0755));
        $this->assertEquals(0755, $this->foo->getChild('another')->getPermissions());
    }