summaryrefslogtreecommitdiff
path: root/test/res
diff options
context:
space:
mode:
authornea <nea@nea.moe>2023-08-10 18:01:37 +0200
committernea <nea@nea.moe>2023-08-10 18:01:37 +0200
commit873864974127ec4f123c7db0560235e806c3faab (patch)
treec1d39786d89dd39f7843a73c2d69e75a12894b36 /test/res
parent0ab6dab185e31fcf6f3e0cf98dc8496f02448ee8 (diff)
downloadnealisp-873864974127ec4f123c7db0560235e806c3faab.tar.gz
nealisp-873864974127ec4f123c7db0560235e806c3faab.tar.bz2
nealisp-873864974127ec4f123c7db0560235e806c3faab.zip
Add test junit formatter
Diffstat (limited to 'test/res')
-rw-r--r--test/res/test.lisp7
1 files changed, 4 insertions, 3 deletions
diff --git a/test/res/test.lisp b/test/res/test.lisp
index f3b870c..eea180c 100644
--- a/test/res/test.lisp
+++ b/test/res/test.lisp
@@ -24,9 +24,10 @@
(debuglog "============")
(debuglog "Running tests")
-(import :ntest)
-(ntest.test "Funny test" (seq
+(import :test)
+(test.test "Funny test" (seq
(debuglog "Funny test running")
- (debuglog ((ntest.fail "Test failed")))))
+ ((test.assert false "False failed"))
+ ((test.fail "Test failed"))))