1 parent 4b3993a commit e8ddff2Copy full SHA for e8ddff2
1 file changed
t/tests.lisp
@@ -14,7 +14,20 @@
14
(deftest test-downloading-system ()
15
(let ((ql-https:*quietly-use-https* nil))
16
(signals ql-https:no-https-error
17
- (ql:quickload "str" :silent t))))
+ (ql:quickload "str" :silent t))))
18
+
19
+(deftest test-quicklisp-download ()
20
+ (let ((ql-https:*quietly-use-https* t))
21
+ (ql:quickload "str" :silent t))
22
+ (is (probe-file (merge-pathnames "quicklisp/dists/quicklisp/installed/systems/str.txt"
23
+ (user-homedir-pathname)))))
24
25
+(deftest test-ultralisp-download ()
26
+ ;; install ultralisp
27
+ (ql-dist:install-dist "https://dist.ultralisp.org/")
28
29
+ (ql:quickload "hyperdoc" :silent t))
30
+ (is (probe-file (merge-pathnames "quicklisp/dists/ultralisp/installed/systems/hyperdoc.txt"))))
31
32
33
0 commit comments