function FileScanDirectoryTest::testOptionMinDepth
Check that the min_depth options lets us ignore files in the starting directory.
File
-
modules/
simpletest/ tests/ file.test, line 1376
Class
- FileScanDirectoryTest
- Tests the file_scan_directory() function.
Code
function testOptionMinDepth() {
$files = file_scan_directory($this->path, '/^javascript-/', array(
'min_depth' => 0,
));
$this->assertEqual(2, count($files), 'No minimum-depth gets files in current directory.');
$files = file_scan_directory($this->path, '/^javascript-/', array(
'min_depth' => 1,
));
$this->assertTrue(empty($files), "Minimum-depth of 1 successfully excludes files from current directory.");
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.