function FileScanDirectoryTest::testOptionMinDepth in Drupal 7
Check that the min_depth options lets us ignore files in the starting directory.
File
- modules/
simpletest/ tests/ file.test, line 1322 - This provides SimpleTests for the core file handling functionality. These include FileValidateTest and FileSaveTest.
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.");
}