aboutsummaryrefslogtreecommitdiff
path: root/tests/lisp/test.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lisp/test.lisp')
-rw-r--r--tests/lisp/test.lisp14
1 files changed, 0 insertions, 14 deletions
diff --git a/tests/lisp/test.lisp b/tests/lisp/test.lisp
deleted file mode 100644
index 07bdd5b..0000000
--- a/tests/lisp/test.lisp
+++ /dev/null
@@ -1,14 +0,0 @@
-(defmacro test-module (name)
- `(progn
- (princ (format "[TEST] %s\n" ,name))
- (load (format "%s.lisp" ,name))
- (princ (format "[PASS] %s\n" ,name))))
-
-(test-module "arithmetic")
-(test-module "control-flow")
-(test-module "lambda")
-(test-module "comment")
-(test-module "macro")
-(test-module "let-binding")
-
-(exit)