summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-08-30 16:39:16 +0200
committerLaurenz <laurmaedje@gmail.com>2021-08-30 16:39:16 +0200
commitff25573224400673d08b31e576d5a0d87751dbe1 (patch)
tree7a0df37b627a238250ffca454d1dd78dc765cedb /tests
parente4e79990dad90aea17ea99e54fcd60435927bb56 (diff)
Lower- and uppercase string conversion functions
Diffstat (limited to 'tests')
-rw-r--r--tests/typ/utility/strings.typ8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/typ/utility/strings.typ b/tests/typ/utility/strings.typ
new file mode 100644
index 00000000..7c708175
--- /dev/null
+++ b/tests/typ/utility/strings.typ
@@ -0,0 +1,8 @@
+// Test string functions.
+// Ref: false
+
+---
+#let memes = "ArE mEmEs gReAt?";
+#test(lower(memes), "are memes great?")
+#test(upper(memes), "ARE MEMES GREAT?")
+#test(upper("Ελλάδα"), "ΕΛΛΆΔΑ")