You are here

public function FootermapBlockWebTest::testFrontPage in footermap: a footer site map 8

Assert that the footermap block appears on the front page.

File

tests/src/Functional/FootermapBlockWebTest.php, line 53

Class

FootermapBlockWebTest
Tests the footermap block as part of a Drupal installation.

Namespace

Drupal\Tests\footermap\Functional

Code

public function testFrontPage() {
  $this
    ->drupalGet('');
  $this
    ->assertBlockAppears($this->block);
  $this
    ->assertSession()
    ->pageTextContains('Footermap');
  $this
    ->assertSession()
    ->statusCodeEquals(200);
}