Blob


1 ;; test stuite for kami
2 ;; Copyright (C) 2021 cage
4 ;; This program is free software: you can redistribute it and/or modify
5 ;; it under the terms of the GNU General Public License as published by
6 ;; the Free Software Foundation, either version 3 of the License, or
7 ;; (at your option) any later version.
9 ;; This program is distributed in the hope that it will be useful,
10 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ;; GNU General Public License for more details.
14 ;; You should have received a copy of the GNU General Public License
15 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
17 (defpackage :all-tests
18 (:use :cl
19 :clunit
20 :cl+ssl)
21 (:export
22 :*client-certificate*
23 :*certificate-key*
24 :*host*
25 :*port*
26 :with-open-ssl-stream
27 :all-suite
28 :run-all-tests-with-debugger
29 :run-all-tests))
31 (defpackage :kami-tests
32 (:use :cl
33 :clunit
34 :purgatory
35 :all-tests)
36 (:export))