function AdminMetaTagTest::testMetaTag

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/System/AdminMetaTagTest.php \Drupal\Tests\system\Functional\System\AdminMetaTagTest::testMetaTag()
  2. 10 core/modules/system/tests/src/Functional/System/AdminMetaTagTest.php \Drupal\Tests\system\Functional\System\AdminMetaTagTest::testMetaTag()
  3. 11.x core/modules/system/tests/src/Functional/System/AdminMetaTagTest.php \Drupal\Tests\system\Functional\System\AdminMetaTagTest::testMetaTag()

Verify that the meta tag HTML is generated correctly.

File

core/modules/system/tests/src/Functional/System/AdminMetaTagTest.php, line 22

Class

AdminMetaTagTest
Confirm that the fingerprinting meta tag appears as expected.

Namespace

Drupal\Tests\system\Functional\System

Code

public function testMetaTag() {
    list($version, ) = explode('.', \Drupal::VERSION);
    $string = '<meta name="Generator" content="Drupal ' . $version . ' (https://www.drupal.org)" />';
    $this->drupalGet('node');
    $this->assertRaw($string, 'Fingerprinting meta tag generated correctly.', 'System');
}

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