Add a test

This commit is contained in:
Fabien Potencier
2020-08-05 16:53:34 +02:00
parent b65facc1c5
commit 94aa9bf305
+2
View File
@@ -5,6 +5,7 @@ not
{{ not false ? 'OK' : 'KO' }}
{{ (not false)?'OK':'KO' }}
{{ not false?'OK':'KO' }}
{{not true ? 'KO' : 'OK'}}
--DATA--
return []
--EXPECT--
@@ -12,3 +13,4 @@ OK
OK
OK
OK
OK