summaryrefslogtreecommitdiff
path: root/tests/typ/utility/strings.typ
diff options
context:
space:
mode:
Diffstat (limited to 'tests/typ/utility/strings.typ')
-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("Ελλάδα"), "ΕΛΛΆΔΑ")