class BlockLayoutTourTest

Tests the Block Layout tour.

@group block

Hierarchy

Expanded class hierarchy of BlockLayoutTourTest

File

core/modules/block/tests/src/Functional/BlockLayoutTourTest.php, line 12

Namespace

Drupal\Tests\block\Functional
View source
class BlockLayoutTourTest extends TourTestBase {
  
  /**
   * An admin user with administrative permissions for Blocks.
   *
   * @var \Drupal\user\UserInterface
   */
  protected $adminUser;
  
  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'block',
    'tour',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->adminUser = $this->drupalCreateUser([
      'administer blocks',
      'access tour',
    ]);
    $this->drupalLogin($this->adminUser);
    $this->drupalPlaceBlock('local_actions_block');
  }
  
  /**
   * Tests Block Layout tour tip availability.
   */
  public function testBlockLayoutTourTips() {
    $this->drupalGet('admin/structure/block');
    $this->assertTourTips();
  }

}

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