You are here

class vfsStreamGlobTestCase in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamGlobTestCase.php \org\bovigo\vfs\vfsStreamGlobTestCase

Test for org\bovigo\vfs\vfsStream.

@since 0.9.0 @group issue_2

Hierarchy

Expanded class hierarchy of vfsStreamGlobTestCase

File

vendor/mikey179/vfsStream/src/test/php/org/bovigo/vfs/vfsStreamGlobTestCase.php, line 17

Namespace

org\bovigo\vfs
View source
class vfsStreamGlobTestCase extends \PHPUnit_Framework_TestCase {

  /**
   * @test
   */
  public function globDoesNotWorkWithVfsStreamUrls() {
    $root = vfsStream::setup('example');
    mkdir(vfsStream::url('example/test/'), 0777, true);
    $this
      ->assertEmpty(glob(vfsStream::url('example'), GLOB_MARK));
  }

}

Members