public function Twig_Tests_Loader_ChainTest::testGetSource

File

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

Class

Twig_Tests_Loader_ChainTest

Code

public function testGetSource() {
  $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
    ->getSource('foo'));
  $this
    ->assertEquals('foo', $loader
    ->getSource('bar'));
}