redirect() public method

See also: Bolt\Twig\Handler\UtilsHandler::redirect()
public redirect ( $path )
Example #1
0
 public function testRedirect()
 {
     $app = $this->getApp();
     $handlers = $this->getTwigHandlers($app);
     $handlers['utils'] = $this->getMockHandler('UtilsHandler', 'redirect');
     $twig = new TwigExtension($app, $handlers, true);
     $twig->redirect(null, null);
 }