public function Twig_Tests_Loader_ArrayTest::testGetCacheKey in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/twig/twig/test/Twig/Tests/Loader/ArrayTest.php \Twig_Tests_Loader_ArrayTest::testGetCacheKey()
File
- vendor/
twig/ twig/ test/ Twig/ Tests/ Loader/ ArrayTest.php, line 31
Class
Code
public function testGetCacheKey() {
$loader = new Twig_Loader_Array(array(
'foo' => 'bar',
));
$this
->assertEquals('bar', $loader
->getCacheKey('foo'));
}