diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-02-04 21:38:59 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-02-04 21:38:59 +0100 |
commit | 4568c40ae4bd51258290a4b0da169b3d5bce9ee7 (patch) | |
tree | 464dedb49cba80f203666b8260f1542856559b56 /testing/templates/eq.html | |
parent | d1d34ec6080697c47b6b548de15a0cbd55d68ead (diff) | |
download | askama-4568c40ae4bd51258290a4b0da169b3d5bce9ee7.tar.gz askama-4568c40ae4bd51258290a4b0da169b3d5bce9ee7.tar.bz2 askama-4568c40ae4bd51258290a4b0da169b3d5bce9ee7.zip |
Add test for == operator
Diffstat (limited to '')
-rw-r--r-- | testing/templates/eq.html | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testing/templates/eq.html b/testing/templates/eq.html new file mode 100644 index 0000000..44666d3 --- /dev/null +++ b/testing/templates/eq.html @@ -0,0 +1 @@ +{% if a == b %}t{% endif %}{% if a == c %}t{% else %}f{% endif %} |