mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-11 01:46:37 +00:00
20 lines
369 B
Plaintext
Executable File
20 lines
369 B
Plaintext
Executable File
--TEST--
|
|
"singular" filter
|
|
--TEMPLATE--
|
|
{{ 'partitions'|singular('fr') }}
|
|
{{ 'partitions'|singular('fr', all=true)|join(',') }}
|
|
{{ 'persons'|singular('fr') }}
|
|
{{ 'persons'|singular('en', all=true)|join(',') }}
|
|
{{ 'people'|singular('en') }}
|
|
{{ 'people'|singular('en', all=true)|join(',') }}
|
|
|
|
--DATA--
|
|
return []
|
|
--EXPECT--
|
|
partition
|
|
partition
|
|
person
|
|
person
|
|
person
|
|
person
|