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