You are here

public function EngineNyanCatTest::testTemplateOverride in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/Theme/EngineNyanCatTest.php \Drupal\Tests\system\Functional\Theme\EngineNyanCatTest::testTemplateOverride()

Ensures a theme's template is overridable based on the 'template' filename.

File

core/modules/system/tests/src/Functional/Theme/EngineNyanCatTest.php, line 34

Class

EngineNyanCatTest
Tests the multi theme engine support.

Namespace

Drupal\Tests\system\Functional\Theme

Code

public function testTemplateOverride() {
  $this
    ->config('system.theme')
    ->set('default', 'test_theme_nyan_cat_engine')
    ->save();
  $this
    ->drupalGet('theme-test/template-test');
  $this
    ->assertSession()
    ->pageTextContains('Success: Template overridden with Nyan Cat theme. All of them');
}