660471c0007ac65d627ae393095ea5830b73e000
[yaffs-website] / vendor / twig / twig / test / Twig / Tests / Fixtures / functions / min.test
1 --TEST--
2 "min" function
3 --TEMPLATE--
4 {{ min(2, 1, 3, 5, 4) }}
5 {{ min([2, 1, 3, 5, 4]) }}
6 {{ min({2:"two", 1:"one", 3:"three", 5:"five", 4:"for"}) }}
7 --DATA--
8 return array()
9 --EXPECT--
10 1
11 1
12 five