When attempting to switch to Parachute from FiveAM using parachute-fiveam , I replaced #:fiveam in my asdf:defsystem:depends-on with #:parachute-fiveam, but I get this error:
; file: /home/modula/misc/lisp/cl-patterns/t/test.lisp
; in: DEF-SUITE CL-PATTERNS-TESTS
; (ORG.SHIRAKUMO.PARACHUTE.5AM:DEF-SUITE CL-PATTERNS/TESTS::CL-PATTERNS-TESTS
; :DESCRIPTION
; "cl-patterns tests suite.")
; ==>
; (PARACHUTE:DEFINE-TEST CL-PATTERNS/TESTS::CL-PATTERNS-TESTS
; :HOME
; ORG.SHIRAKUMO.PARACHUTE.5AM::*HOME*
; :DESCRIPTION
; "cl-patterns tests suite."
; :PARENT
; NIL)
;
; caught ERROR:
; (during macroexpansion of (PARACHUTE:DEFINE-TEST CL-PATTERNS-TESTS
; ...))
; The name ORG.SHIRAKUMO.PARACHUTE.5AM::*HOME* does not designate any package.
The first file in my test suite, test.lisp, starts off like this:
After that, I just have a few macros and a few def-fixture forms, and a few test forms.
Is there something else I need to do in my case to get the FiveAM compatibility layer working? Let me know if you need any more info from me. If you want to take a look, the library in question has its repo/source here.
When attempting to switch to Parachute from FiveAM using
parachute-fiveam
, I replaced#:fiveam
in myasdf:defsystem
:depends-on
with#:parachute-fiveam
, but I get this error:The first file in my test suite,
test.lisp
, starts off like this:After that, I just have a few macros and a few
def-fixture
forms, and a fewtest
forms.Is there something else I need to do in my case to get the FiveAM compatibility layer working? Let me know if you need any more info from me. If you want to take a look, the library in question has its repo/source here.