You are here

function FileTransferTest::_getFakeModuleFiles in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/src/Tests/FileTransfer/FileTransferTest.php \Drupal\system\Tests\FileTransfer\FileTransferTest::_getFakeModuleFiles()
1 call to FileTransferTest::_getFakeModuleFiles()
FileTransferTest::_buildFakeModule in core/modules/system/src/Tests/FileTransfer/FileTransferTest.php

File

core/modules/system/src/Tests/FileTransfer/FileTransferTest.php, line 31
Contains \Drupal\system\Tests\FileTransfer\FileTransferTest.

Class

FileTransferTest
Tests that the jail is respected and that protocols using recursive file move operations work.

Namespace

Drupal\system\Tests\FileTransfer

Code

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