public function FileTransferTest::_getFakeModuleFiles in Drupal 9
Same name and namespace in other branches
- 8 core/modules/system/tests/src/Functional/FileTransfer/FileTransferTest.php \Drupal\Tests\system\Functional\FileTransfer\FileTransferTest::_getFakeModuleFiles()
1 call to FileTransferTest::_getFakeModuleFiles()
- FileTransferTest::_buildFakeModule in core/
modules/ system/ tests/ src/ Functional/ FileTransfer/ FileTransferTest.php
File
- core/
modules/ system/ tests/ src/ Functional/ FileTransfer/ FileTransferTest.php, line 31
Class
- FileTransferTest
- Tests that the jail is respected and that protocols using recursive file move operations work.
Namespace
Drupal\Tests\system\Functional\FileTransferCode
public function _getFakeModuleFiles() {
$files = [
'fake.module',
'fake.info.yml',
'theme' => [
'fake.html.twig',
],
'inc' => [
'fake.inc',
],
];
return $files;
}