unary.test 184B

12345678910111213
  1. --TEST--
  2. Twig supports unary operators (not, -, +)
  3. --TEMPLATE--
  4. {{ not 1 }}/{{ not 0 }}
  5. {{ +1 + 1 }}/{{ -1 - 1 }}
  6. {{ not (false or true) }}
  7. --DATA--
  8. return array()
  9. --EXPECT--
  10. /1
  11. 2/-2