-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcl-bcrypt.test.asd
More file actions
21 lines (20 loc) · 786 Bytes
/
cl-bcrypt.test.asd
File metadata and controls
21 lines (20 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defpackage cl-bcrypt-test-system
(:use :cl :asdf))
(in-package :cl-bcrypt-test-system)
(defsystem "cl-bcrypt.test"
:name "cl-bcrypt.test"
:long-name "cl-bcrypt.test"
:description "Test suite for cl-bcrypt system"
:version "0.1.0"
:author "Marin Atanasov Nikolov <dnaeon@gmail.com>"
:maintainer "Marin Atanasov Nikolov <dnaeon@gmail.com>"
:license "BSD 2-Clause"
:homepage "https://github.com/dnaeon/cl-bcrypt"
:bug-tracker "https://github.com/dnaeon/cl-bcrypt"
:source-control "https://github.com/dnaeon/cl-bcrypt"
:depends-on (:cl-bcrypt
:rove)
:components ((:module "tests"
:pathname #P"t/"
:components ((:file "test-suite"))))
:perform (test-op (op c) (uiop:symbol-call :rove :run-suite :cl-bcrypt.test)))