-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassertion-error.asd
More file actions
28 lines (26 loc) · 1.12 KB
/
Copy pathassertion-error.asd
File metadata and controls
28 lines (26 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;;;; -*- Mode: Lisp; Syntax: ANSI-Common-Lisp; Base: 10 -*-
(defsystem :assertion-error
:author "noloop <noloop@zoho.com>"
:maintainer "noloop <noloop@zoho.com>"
:license "GPLv3"
:version "0.1.0"
:homepage "https://github.com/noloop/assertion-error"
:bug-tracker "https://github.com/noloop/assertion-error/issues"
:source-control (:git "git@github.com:noloop/assertion-error.git")
:description "Error pattern for assertion libraries in Common Lisp."
:depends-on (:dissect)
:components ((:module "src"
:components
((:file "package")
(:file "assertion-error" :depends-on ("package")))))
:in-order-to ((test-op (test-op "assertion-error/test"))))
(defsystem :assertion-error/test
:author "noloop <noloop@zoho.com>"
:maintainer "noloop <noloop@zoho.com>"
:license "GNU General Public License v3.0"
:description "assertion-error Test."
:depends-on (:assertion-error)
:components ((:module "test"
:components
((:file "assertion-error-test"))))
:perform (test-op (op system) (funcall (read-from-string "assertion-error-test::run"))))