You are here

public function TwigLoaderTest::testTwigLoaderAddition in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/Theme/TwigLoaderTest.php \Drupal\Tests\system\Functional\Theme\TwigLoaderTest::testTwigLoaderAddition()
  2. 10 core/modules/system/tests/src/Functional/Theme/TwigLoaderTest.php \Drupal\Tests\system\Functional\Theme\TwigLoaderTest::testTwigLoaderAddition()

Tests adding an additional twig loader to the loader chain.

File

core/modules/system/tests/src/Functional/Theme/TwigLoaderTest.php, line 29

Class

TwigLoaderTest
Tests adding Twig loaders.

Namespace

Drupal\Tests\system\Functional\Theme

Code

public function testTwigLoaderAddition() {
  $environment = \Drupal::service('twig');
  $template = $environment
    ->loadTemplate('kittens');
  $this
    ->assertEqual($template
    ->render([]), 'kittens', 'Passing "kittens" to the custom Twig loader returns "kittens".');
  $template = $environment
    ->loadTemplate('meow');
  $this
    ->assertEqual($template
    ->render([]), 'cats', 'Passing something other than "kittens" to the custom Twig loader returns "cats".');
}