RemoteFileUnmanagedMoveTest.php

Definition of Drupal\system\Tests\File\RemoteFileUnmanagedMoveTest.

Namespace

Drupal\system\Tests\File

File

drupal/core/modules/system/lib/Drupal/system/Tests/File/RemoteFileUnmanagedMoveTest.php
View source
<?php

/**
 * @file
 * Definition of Drupal\system\Tests\File\RemoteFileUnmanagedMoveTest.
 */
namespace Drupal\system\Tests\File;


/**
 * Unmanaged move related tests on remote filesystems.
 */
class RemoteFileUnmanagedMoveTest extends UnmanagedMoveTest {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'file_test',
  );
  public static function getInfo() {
    $info = parent::getInfo();
    $info['group'] = 'File API (remote)';
    return $info;
  }
  function setUp() {
    parent::setUp();
    variable_set('file_default_scheme', 'dummy-remote');
  }

}

Classes

Namesort descending Description
RemoteFileUnmanagedMoveTest Unmanaged move related tests on remote filesystems.