PHP Classes

File: libs/Twig/test/Twig/Tests/Fixtures/tags/for/else.test

Recommend this page to a friend!
  Classes of william amed   Raptor 2   libs/Twig/test/Twig/Tests/Fixtures/tags/for/else.test   Download  
File: libs/Twig/test/Twig/Tests/Fixtures/tags/for/else.test
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Raptor 2
Framework that takes routes from annotations
Author: By
Last change:
Date: 8 years ago
Size: 364 bytes
 

Contents

Class file image Download
--TEST-- "for" tag can use an "else" clause --TEMPLATE-- {% for item in items %} * {{ item }} {% else %} no item {% endfor %} --DATA-- return array('items' => array('a', 'b')) --EXPECT-- * a * b --DATA-- return array('items' => array()) --EXPECT-- no item --DATA-- return array() --CONFIG-- return array('strict_variables' => false) --EXPECT-- no item