Files
Twig/tests/Fixtures/functions/min.test
2019-06-30 14:56:12 +02:00

13 lines
188 B
Plaintext

--TEST--
"min" function
--TEMPLATE--
{{ min(2, 1, 3, 5, 4) }}
{{ min([2, 1, 3, 5, 4]) }}
{{ min({2:"two", 1:"one", 3:"three", 5:"five", 4:"for"}) }}
--DATA--
return []
--EXPECT--
1
1
five