testStackable() public method

See also: Bolt\Twig\Handler\AdminHandler::testStackable()
public testStackable ( $filename )
Example #1
0
 public function testTestStackable()
 {
     $app = $this->getApp();
     $handlers = $this->getTwigHandlers($app);
     $handlers['admin'] = $this->getMockHandler('AdminHandler', 'testStackable');
     $twig = new TwigExtension($app, $handlers, true);
     $twig->testStackable(null);
 }