mirror of
https://github.com/twigphp/Twig.git
synced 2026-09-15 11:56:50 +00:00
11 lines
202 B
Plaintext
11 lines
202 B
Plaintext
--TEST--
|
|
Twig allows multi-word tests without a custom node class
|
|
--TEMPLATE--
|
|
{{ 'foo' is multi word ? 'yes' : 'no' }}
|
|
{{ 'foo bar' is multi word ? 'yes' : 'no' }}
|
|
--DATA--
|
|
return []
|
|
--EXPECT--
|
|
no
|
|
yes
|