You are here

public function MetatagDevelTest::testAdminPage in Metatag 7

Confirm that it's possible to load the main admin page.

File

metatag_devel/tests/MetatagDevelTest.test, line 41
Tests for the Metatag Devel module.

Class

MetatagDevelTest
Tests for the Metatag Devel module.

Code

public function testAdminPage() {
  $this
    ->drupalGet('admin/config/search/metatags');
  $this
    ->assertResponse(200);

  // Confirm the page is correct.
  $this
    ->assertText(t('To view a summary of the default meta tags and the inheritance, click on a meta tag type.'));
}