public function BlockTest::testThemeAdminLink in Drupal 8
Same name and namespace in other branches
- 9 core/modules/block/tests/src/Functional/BlockTest.php \Drupal\Tests\block\Functional\BlockTest::testThemeAdminLink()
Tests that a link exists to block layout from the appearance form.
File
- core/
modules/ block/ tests/ src/ Functional/ BlockTest.php, line 475
Class
- BlockTest
- Tests basic block functionality.
Namespace
Drupal\Tests\block\FunctionalCode
public function testThemeAdminLink() {
$this
->drupalPlaceBlock('help_block', [
'region' => 'help',
]);
$theme_admin = $this
->drupalCreateUser([
'administer blocks',
'administer themes',
'access administration pages',
]);
$this
->drupalLogin($theme_admin);
$this
->drupalGet('admin/appearance');
$this
->assertText('You can place blocks for each theme on the block layout page');
$this
->assertLinkByHref('admin/structure/block');
}