Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / system / src / Tests / Form / EmailTest.php
diff --git a/web/core/modules/system/src/Tests/Form/EmailTest.php b/web/core/modules/system/src/Tests/Form/EmailTest.php
deleted file mode 100644 (file)
index a9d445d..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-<?php
-
-namespace Drupal\system\Tests\Form;
-
-use Drupal\Component\Serialization\Json;
-use Drupal\simpletest\WebTestBase;
-
-/**
- * Tests the form API email element.
- *
- * @group Form
- */
-class EmailTest extends WebTestBase {
-
-  /**
-   * Modules to enable.
-   *
-   * @var array
-   */
-  public static $modules = ['form_test'];
-
-  protected $profile = 'testing';
-
-  /**
-   * Tests that #type 'email' fields are properly validated.
-   */
-  public function testFormEmail() {
-    $edit = [];
-    $edit['email'] = 'invalid';
-    $edit['email_required'] = ' ';
-    $this->drupalPostForm('form-test/email', $edit, 'Submit');
-    $this->assertRaw(t('The email address %mail is not valid.', ['%mail' => 'invalid']));
-    $this->assertRaw(t('@name field is required.', ['@name' => 'Address']));
-
-    $edit = [];
-    $edit['email_required'] = '  foo.bar@example.com ';
-    $values = Json::decode($this->drupalPostForm('form-test/email', $edit, 'Submit'));
-    $this->assertIdentical($values['email'], '');
-    $this->assertEqual($values['email_required'], 'foo.bar@example.com');
-
-    $edit = [];
-    $edit['email'] = 'foo@example.com';
-    $edit['email_required'] = 'example@drupal.org';
-    $values = Json::decode($this->drupalPostForm('form-test/email', $edit, 'Submit'));
-    $this->assertEqual($values['email'], 'foo@example.com');
-    $this->assertEqual($values['email_required'], 'example@drupal.org');
-  }
-
-}