public function Twig_Tests_Loader_ArrayTest::testGetSource

File

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

Class

Twig_Tests_Loader_ArrayTest

Code

public function testGetSource() {
  $loader = new Twig_Loader_Array(array(
    'foo' => 'bar',
  ));
  $this
    ->assertEquals('bar', $loader
    ->getSource('foo'));
}