summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/typ/compute/calc.typ17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/typ/compute/calc.typ b/tests/typ/compute/calc.typ
index ee063707..51569f7a 100644
--- a/tests/typ/compute/calc.typ
+++ b/tests/typ/compute/calc.typ
@@ -77,6 +77,23 @@
#test(calc.min("hi"), "hi")
---
+// Test the `calc` function.
+#test(calc.pow(10, 0), 1)
+#test(calc.pow(2, 4), 16)
+
+---
+// Error: 10-16 zero to the power of zero is undefined
+#calc.pow(0, 0)
+
+---
+// Error: 14-31 exponent is too large
+#calc.pow(2, 10000000000000000)
+
+---
+// Error: 14-36 exponent may not be NaN, infinite, or subnormal
+#calc.pow(2, calc.pow(2.0, 10000.0))
+
+---
// Error: 10-12 expected at least one value
#calc.min()