forked from thephoeron/black-stone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
black-stone-test.asd
30 lines (24 loc) · 943 Bytes
/
black-stone-test.asd
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
29
30
;;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: BLACK-STONE-TEST; Base: 10 -*-
;;;; file: black-stone-test.asd
;;;; Copyright (c) 2013--2015, "the Phoeron" Colin J.E. Lupton <//thephoeron.com>
;;;; See LICENSE for additional information.
(in-package :cl-user)
(defpackage black-stone-test-asd
(:use :cl :asdf))
(in-package :black-stone-test-asd)
(defsystem #:black-stone-test
:serial t
:version #.black-stone-asd:*black-stone-version*
:description "The test code for BLACK-STONE."
:author "\"the Phoeron\" Colin J.E. Lupton <[email protected]>"
:license "MIT"
:depends-on (#:black-stone
#:prove)
:components ((:module "t"
:components
((:test-file "black-stone"))))
:defsystem-depends-on (prove-asdf)
:perform (test-op :after (op c)
(funcall (intern #.(string :run-test-system) :prove-asdf) c)
(asdf:clear-system c)))
;; EOF