Skip to content
Snippets Groups Projects
Commit 0e514af2 authored by catch's avatar catch
Browse files

Issue #1911190 by mitron: Test that drupal_get_filename() has NULL return...

Issue #1911190 by mitron: Test that drupal_get_filename() has NULL return value when the file is not found.
parent 71364b1a
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ class GetFilenameUnitTest extends UnitTestBase {
public static function getInfo() {
return array(
'name' => 'Get filename test',
'description' => 'Test that drupal_get_filename() works correctly when the file is not found in the database.',
'description' => 'Test that drupal_get_filename() works correctly.',
'group' => 'Bootstrap',
);
}
......@@ -50,5 +50,8 @@ function testDrupalGetFilename() {
// will automatically check there for 'script' files, just as it does
// for (e.g.) 'module' files in core/modules.
$this->assertIdentical(drupal_get_filename('script', 'test'), 'core/scripts/test/test.script');
// Searching for an item that does not exist returns NULL.
$this->assertNull(drupal_get_filename('module', uniqid("", TRUE)), 'Searching for an item that does not exist returns NULL.');
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment