function FileTransferTest::_getFakeModuleFiles

1 call to FileTransferTest::_getFakeModuleFiles()
FileTransferTest::_buildFakeModule in drupal/core/modules/system/lib/Drupal/system/Tests/FileTransfer/FileTransferTest.php

File

drupal/core/modules/system/lib/Drupal/system/Tests/FileTransfer/FileTransferTest.php, line 35
Definition of Drupal\system\Tests\FileTransfer\FileTransferTest.

Class

FileTransferTest
File transfer tests.

Namespace

Drupal\system\Tests\FileTransfer

Code

function _getFakeModuleFiles() {
  $files = array(
    'fake.module',
    'fake.info',
    'theme' => array(
      'fake.tpl.php',
    ),
    'inc' => array(
      'fake.inc',
    ),
  );
  return $files;
}