You are here

RemoteFileSaveUploadTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/file/src/Tests/RemoteFileSaveUploadTest.php

Namespace

Drupal\file\Tests

File

core/modules/file/src/Tests/RemoteFileSaveUploadTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\file\Tests\RemoteFileSaveUploadTest.
 */
namespace Drupal\file\Tests;


/**
 * Tests the file uploading functions.
 *
 * @group file
 */
class RemoteFileSaveUploadTest extends SaveUploadTest {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'file_test',
  );
  protected function setUp() {
    parent::setUp();
    $this
      ->config('system.file')
      ->set('default_scheme', 'dummy-remote')
      ->save();
  }

}

Classes

Namesort descending Description
RemoteFileSaveUploadTest Tests the file uploading functions.