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\FunctionalCode
public function testFrontPage() {
$this
->drupalGet('');
$this
->assertBlockAppears($this->block);
$this
->assertSession()
->pageTextContains('Footermap');
$this
->assertSession()
->statusCodeEquals(200);
}