You are here

QuickEditMinimalTest.php in Drupal 10

File

core/modules/quickedit/tests/src/Functional/QuickEditMinimalTest.php
View source
<?php

namespace Drupal\Tests\quickedit\Functional;

use Drupal\Tests\BrowserTestBase;

/**
 * Tests Quick Edit can be installed with Minimal.
 *
 * @group quickedit
 */
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.');
  }

}

Classes

Namesort descending Description
QuickEditMinimalTest Tests Quick Edit can be installed with Minimal.