Open arichiardi opened 5 years ago
I debugged a bit and at the REPL this looks like:
cl-user> (ql:quickload (string-downcase "rove/reporter/spec"))
spec"))
To load "rove/reporter/spec":
Load 1 ASDF system:
rove/reporter/spec
; Loading "rove/reporter/spec"
("rove/reporter/spec")
cl-user> (find-package "rove/reporter/spec")
It seems that in my case the line at this line returns nil
.
I am newbie enough to stop here as I can't yet understand how packages works and why it is no finding it :smile:
Oh I found what would work there:
(find-package :rove/reporter/spec)
#<package "ROVE/REPORTER/SPEC">
Ok I patched that file but now I see:
There is no class named rove/reporter/spec::|spec-reporter|.
...
It seems it comes from a couple of down further down.
I suppose that your Lisp is set *print-case*
as :downcase
. Converting the symbol to upcased one would work on such an environment, but wouldn't with modern-mode (case-sensitive reader), which Allegro CL has. I'm considering another solution.
Oh, yes it does, I have even forgot about that 😅
Please feel free to dismiss this one for sure, I learned something and I am happy 😉
Hi there, thanks for this nice package :smile:
I am trying
rove
and cheked out the latest version. In SBCL, when I do:I receive:
I am also just starting with Common Lisp so I might be missing something here. Any feedback is appreciated.
Thank you again!