aboutsummaryrefslogtreecommitdiff
path: root/tests/package.lisp
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2022-05-05 08:29:22 -0300
committerSean Whitton <spwhitton@spwhitton.name>2022-05-05 12:26:10 -0700
commit68cb80cfbcd7684cd2d2b8e5091d956aea71e9dd (patch)
tree4763e94359d78ccc1bec23e5e9aaa2045c3c0030 /tests/package.lisp
parent8cfab42bc3a063f48a3934326818f1c5f2ca9721 (diff)
downloadconsfigurator-68cb80cfbcd7684cd2d2b8e5091d956aea71e9dd.tar.gz
run tests with temporary gpg home
The big picture change here is the introduction of a custom test runner which allows setting up and tearing down various data sources (or other resources) for the test suite. In order to parse the output of gpg, provide a new exported function CONSFIGURATOR:STRIP-PREFIX. Signed-off-by: David Bremner <david@tethera.net>
Diffstat (limited to 'tests/package.lisp')
-rw-r--r--tests/package.lisp3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/package.lisp b/tests/package.lisp
index 0a303f0..fcb912c 100644
--- a/tests/package.lisp
+++ b/tests/package.lisp
@@ -1,5 +1,6 @@
(in-package :cl-user)
(defpackage :consfigurator/tests
- (:use #:cl #:consfigurator #:consfigurator.data.util #+sbcl :sb-rt #-sbcl :rtest)
+ (:use #:cl #:consfigurator #:consfigurator.data.util #:alexandria #:anaphora
+ #+sbcl :sb-rt #-sbcl :rtest)
(:local-nicknames (#:file #:consfigurator.property.file)))