diff options
Diffstat (limited to 'testing/templates')
-rw-r--r-- | testing/templates/literals.html | 1 | ||||
-rw-r--r-- | testing/templates/match-literal-char.html | 8 |
2 files changed, 9 insertions, 0 deletions
diff --git a/testing/templates/literals.html b/testing/templates/literals.html index 9d973bb..b5fb472 100644 --- a/testing/templates/literals.html +++ b/testing/templates/literals.html @@ -1,3 +1,4 @@ +{{ 'a' }} {{ "a" }} {{ true }} {{ false }} diff --git a/testing/templates/match-literal-char.html b/testing/templates/match-literal-char.html new file mode 100644 index 0000000..2ff255d --- /dev/null +++ b/testing/templates/match-literal-char.html @@ -0,0 +1,8 @@ +{% match item %} +{% when 'a' %} +Found literal a +{% when 'b' %} +Found literal b +{% else %} +Else found {{item}} +{% endmatch %} |