File
- drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Extension/Twig/TwigResourceTest.php, line 37
Class
- TwigResourceTest
Namespace
Assetic\Test\Extension\Twig
Code
public function testInvalidTemplateNameIsFresh() {
$loader = $this
->getMock('Twig_LoaderInterface');
$loader
->expects($this
->once())
->method('isFresh')
->with('asdf', 1234)
->will($this
->throwException(new \Twig_Error_Loader('')));
$resource = new TwigResource($loader, 'asdf');
$this
->assertFalse($resource
->isFresh(1234));
}