diff options
author | Nicofuma <github@nicofuma.fr> | 2015-03-05 21:53:48 +0100 |
---|---|---|
committer | Nicofuma <github@nicofuma.fr> | 2015-03-05 21:53:48 +0100 |
commit | 54753e926df28b686937394bc675130647893639 (patch) | |
tree | 9c479c53286bfaa16c7fcefc32721f22e03c6e7e /tests/template/template_test.php | |
parent | cf39cfc5939f9407082f8f5c1f876ea0ee607a45 (diff) | |
download | forums-54753e926df28b686937394bc675130647893639.tar forums-54753e926df28b686937394bc675130647893639.tar.gz forums-54753e926df28b686937394bc675130647893639.tar.bz2 forums-54753e926df28b686937394bc675130647893639.tar.xz forums-54753e926df28b686937394bc675130647893639.zip |
[ticket/13132] Enable twig expressions tests
PHPBB3-13132
Diffstat (limited to 'tests/template/template_test.php')
-rw-r--r-- | tests/template/template_test.php | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/tests/template/template_test.php b/tests/template/template_test.php index b67b49bd35..33dc4ca551 100644 --- a/tests/template/template_test.php +++ b/tests/template/template_test.php @@ -491,21 +491,27 @@ class phpbb_template_template_test extends phpbb_template_template_test_case array(), 'inner_value', ), - // Disable: needs Twig 1.14.2 - /*array( + array( 'loop_expressions.html', - array('loop' => array(array(),array(),array(),array(),array(),array()),), array(), + array('loop' => array(array(),array(),array(),array(),array(),array()),), array(), - 'yesnonoyesnonoyesnoyesnonoyes', + 'yesnononoyesnoyesnonoyesnono', ), array( 'loop_expressions_twig.html', + array(), + array('loop' => array(array(),array(),array(),array(),array(),array()),), + array(), + 'yesnononoyesnoyesnonoyesnono', + ), + array( + 'loop_expressions_twig2.html', array('loop' => array(array(),array(),array(),array(),array(),array()),), array(), array(), - 'yesnonoyesnonoyesnoyesnonoyes', - ),*/ + 'yesnononoyesnoyesnonoyesnono', + ), ); } |