We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ec7bc7 commit 21695abCopy full SHA for 21695ab
packages.lisp
@@ -86,10 +86,15 @@
86
(:export #:assertion-pass #:assertion-fail
87
#:all-tests-start #:all-tests-complete
88
#:test-start #:test-complete
89
- :results)
+ :results)
90
;; Utility predicates
91
- (:export :logically-equal :set-equal))
+ (:export :logically-equal :set-equal)))
92
93
+(handler-bind
94
+ ;; fixes sbcl SUPER warnings that prevent automatic fasl loading
95
+ ((warning (lambda (c)
96
+ (format *error-output* "~A~%~S" c c)
97
+ (muffle-warning c))))
98
(defpackage :lisp-unit2-asserts
99
(:import-from :lisp-unit2
100
:assert-eq :assert-eql :assert-equal :assert-equalp
0 commit comments