aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2023-04-20 00:19:41 +0200
committerTeddy Wing2023-04-20 00:19:41 +0200
commit46171912f7e1322b9e9ccdb74c4225abc5d17e81 (patch)
treec79627331cbcd8f6dabde85ec46ebecb7fd4a13d
parentb2284896b9ba3945bc5e2206445ccfbb1ee9cfd3 (diff)
downloadxfdf-46171912f7e1322b9e9ccdb74c4225abc5d17e81.tar.bz2
test: Remove local `run` function
Originally took this idea from Steve Losh's cl-digraph: https://github.com/sjl/cl-digraph/blob/936a18cb7de3a7c7e59c244cf4326f217afec85f/test/tests.lisp However, it turns out it wasn't necessary, as I can reference the 1am `run` function directly in the ASDF `test-op`.
-rw-r--r--test/xfdf.lisp8
-rw-r--r--xfdf-test.asd1
2 files changed, 1 insertions, 8 deletions
diff --git a/test/xfdf.lisp b/test/xfdf.lisp
index 31af6a3..854538e 100644
--- a/test/xfdf.lisp
+++ b/test/xfdf.lisp
@@ -1,16 +1,10 @@
(defpackage :xfdf-test
(:use :cl
:1am
- :xfdf)
-
- ; (:export #:run)
- )
+ :xfdf))
(in-package :xfdf-test)
-; (defun run ()
-; (1am:run))
-
(test generates-xfdf-xml
(let ((xfdf-string
(with-output-to-string (xfdf-stream)
diff --git a/xfdf-test.asd b/xfdf-test.asd
index 9a5b0ab..dce04aa 100644
--- a/xfdf-test.asd
+++ b/xfdf-test.asd
@@ -13,5 +13,4 @@
:perform (test-op
(op system)
- ; (symbol-call :xfdf-test :run)
(symbol-call :1am :run)))