public function Twig_Tests_Loader_ChainTest::testGetCacheKey

File

drupal/core/vendor/twig/twig/test/Twig/Tests/Loader/ChainTest.php, line 35

Class

Twig_Tests_Loader_ChainTest

Code

public function testGetCacheKey() {
  $loader = new Twig_Loader_Chain(array(
    new Twig_Loader_Array(array(
      'foo' => 'bar',
    )),
    new Twig_Loader_Array(array(
      'foo' => 'foobar',
      'bar' => 'foo',
    )),
  ));
  $this
    ->assertEquals('bar', $loader
    ->getCacheKey('foo'));
  $this
    ->assertEquals('foo', $loader
    ->getCacheKey('bar'));
}