class QuickEditMinimalTest

Same name and namespace in other branches
  1. 8.9.x core/modules/quickedit/tests/src/Functional/QuickEditMinimalTest.php \Drupal\Tests\quickedit\Functional\QuickEditMinimalTest

Tests Quick Edit can be installed with Minimal.

@group quickedit @group legacy

Hierarchy

Expanded class hierarchy of QuickEditMinimalTest

File

core/modules/quickedit/tests/src/Functional/QuickEditMinimalTest.php, line 13

Namespace

Drupal\Tests\quickedit\Functional
View source
class QuickEditMinimalTest extends BrowserTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected $profile = 'minimal';
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'quickedit',
    'quickedit_test',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * Tests that Quick Edit works with no admin theme.
   *
   * @see \quickedit_library_info_alter()
   */
  public function testSuccessfulInstall() {
    $editor_user = $this->drupalCreateUser([
      'access in-place editing',
    ]);
    $this->drupalLogin($editor_user);
    $this->assertSame('', $this->config('system.theme')
      ->get('admin'), 'There is no admin theme set on the site.');
  }

}

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