aboutsummaryrefslogtreecommitdiff
path: root/tests/lisp/arithmetic.lisp
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-06-21 17:19:11 +0800
committerMistivia <i@mistivia.com>2025-06-21 17:19:11 +0800
commitfec7a34cdc55f226e69d98267e42fa4b52b0193c (patch)
tree8ac2bc5f7c6372a722a080757c2b6f0f6ed12fc1 /tests/lisp/arithmetic.lisp
parent1de8cda84460198e764a94c1f0f106ecaf001331 (diff)
move test files
Diffstat (limited to 'tests/lisp/arithmetic.lisp')
-rw-r--r--tests/lisp/arithmetic.lisp12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/lisp/arithmetic.lisp b/tests/lisp/arithmetic.lisp
deleted file mode 100644
index 2764b10..0000000
--- a/tests/lisp/arithmetic.lisp
+++ /dev/null
@@ -1,12 +0,0 @@
-(assert (= 1 (+ 1 0)))
-(assert (= -1 (- 0 1)))
-(assert (= -1 (- 1)))
-(assert (= 1.1 (+ 1 0.1)))
-(assert (= 2 (i/ 11 5)))
-(assert (= 1 (mod 11 5)))
-
-(assert-error (+ 1 "a"))
-(assert-error (- 1 "a"))
-(assert-error (* 1 "a"))
-(assert-error (/ 1 "a"))
-