Security update to Drupal 8.4.6
[yaffs-website] / vendor / twig / twig / test / Twig / Tests / Fixtures / expressions / literals.test
1 --TEST--
2 Twig supports literals
3 --TEMPLATE--
4 1 {{ true }}
5 2 {{ TRUE }}
6 3 {{ false }}
7 4 {{ FALSE }}
8 5 {{ none }}
9 6 {{ NONE }}
10 7 {{ null }}
11 8 {{ NULL }}
12 --DATA--
13 return array()
14 --EXPECT--
15 1 1
16 2 1
17
18
19
20
21
22