Skip to content

Commit e8ddff2

Browse files
committed
Add download tests for quicklisp and ultralisp
1 parent 4b3993a commit e8ddff2

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

t/tests.lisp

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,20 @@
1414
(deftest test-downloading-system ()
1515
(let ((ql-https:*quietly-use-https* nil))
1616
(signals ql-https:no-https-error
17-
(ql:quickload "str" :silent t))))
17+
(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+
(let ((ql-https:*quietly-use-https* t))
29+
(ql:quickload "hyperdoc" :silent t))
30+
(is (probe-file (merge-pathnames "quicklisp/dists/ultralisp/installed/systems/hyperdoc.txt"))))
1831

1932

2033

0 commit comments

Comments
 (0)