Example #1
0
 public function testLast()
 {
     $app = $this->getApp();
     $handlers = $this->getTwigHandlers($app);
     $twig = new TwigExtension($app, $handlers, false);
     $this->assertEquals(4, $twig->last([1, 2, 3, 4]));
     $this->assertFalse($twig->last(1));
 }