function DefaultMobileMetaTagsTest::testDefaultMetaTagsExist

Verifies that the default mobile meta tags are added.

File

core/modules/system/tests/src/Functional/System/DefaultMobileMetaTagsTest.php, line 41

Class

DefaultMobileMetaTagsTest
Confirm that the default mobile meta tags appear as expected.

Namespace

Drupal\Tests\system\Functional\System

Code

public function testDefaultMetaTagsExist() : void {
  $this->drupalGet('');
  foreach ($this->defaultMetaTags as $name => $metatag) {
    $this->assertSession()
      ->responseContains($metatag);
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.