public function vfsStreamWrapperFileTestCase::cannotReadFileFromNonReadableDir in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamWrapperFileTestCase.php \org\bovigo\vfs\vfsStreamWrapperFileTestCase::cannotReadFileFromNonReadableDir()
@test @group issue_38
File
- vendor/
mikey179/ vfsStream/ src/ test/ php/ org/ bovigo/ vfs/ vfsStreamWrapperFileTestCase.php, line 451
Class
Namespace
org\bovigo\vfsCode
public function cannotReadFileFromNonReadableDir() {
$this
->markTestSkipped("Issue #38.");
$this->bar
->chmod(0);
$this
->assertFalse(@file_get_contents($this->baz1URL));
}