Updated from some -dev modules to alpha, beta or full releases
[yaffs-website] / web / modules / contrib / media_entity_image / src / Tests / MediaEntityImageTest.php
diff --git a/web/modules/contrib/media_entity_image/src/Tests/MediaEntityImageTest.php b/web/modules/contrib/media_entity_image/src/Tests/MediaEntityImageTest.php
deleted file mode 100644 (file)
index ef45fe1..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-<?php
-
-namespace Drupal\media_entity_image\Tests;
-
-use Drupal\simpletest\WebTestBase;
-
-/**
- * Tests for media entity image.
- *
- * @group media_entity_image
- */
-class MediaEntityImageTest extends WebTestBase {
-
-  /**
-   * Modules to install.
-   *
-   * @var array
-   */
-  public static $modules = [
-    'block',
-    'media_entity',
-    'entity_browser',
-    'media_entity_image_test',
-  ];
-
-  /**
-   * Tests media entity image.
-   */
-  public function testMediaEntityImage() {
-    $account = $this->drupalCreateUser([
-      'access test_entity_browser_for_images entity browser pages',
-    ]);
-    $this->drupalLogin($account);
-    $image = current($this->drupalGetTestFiles('image'));
-    // Go to the entity browser iframe link.
-    $this->drupalGet('/entity-browser/iframe/test_entity_browser_for_images');
-    $edit = [
-      'files[upload][]' => $this->container->get('file_system')->realpath($image->uri),
-    ];
-    $this->drupalPostForm(NULL, $edit, t('Select'));
-    $this->assertText('Labels:');
-    $this->assertNoText('The media bundle is not configured correctly.');
-  }
-
-}