PHP Classes

File: libs/Twig/test/Twig/Tests/Fixtures/tests/iterable.test

Recommend this page to a friend!
  Classes of william amed   Raptor 2   libs/Twig/test/Twig/Tests/Fixtures/tests/iterable.test   Download  
File: libs/Twig/test/Twig/Tests/Fixtures/tests/iterable.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: 359 bytes
 

Contents

Class file image Download
--TEST-- "iterable" test --TEMPLATE-- {{ foo is iterable ? 'ok' : 'ko' }} {{ traversable is iterable ? 'ok' : 'ko' }} {{ obj is iterable ? 'ok' : 'ko' }} {{ val is iterable ? 'ok' : 'ko' }} --DATA-- return array( 'foo' => array(), 'traversable' => new ArrayIterator(array()), 'obj' => new stdClass(), 'val' => 'test', ); --EXPECT-- ok ok ko ko