public function GlobAssetTest::testRecursiveIteration

File

drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Asset/GlobAssetTest.php, line 30

Class

GlobAssetTest

Namespace

Assetic\Test\Asset

Code

public function testRecursiveIteration() {
  $assets = new GlobAsset(__DIR__ . '/*.php');
  $this
    ->assertGreaterThan(0, iterator_count($assets), 'GlobAsset initializes for recursive iteration');
}