-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfolio2-taps-tests.asd
25 lines (23 loc) · 988 Bytes
/
folio2-taps-tests.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
;;;; ***********************************************************************
;;;;
;;;; Name: folio2-taps-tests.asd
;;;; Project: folio2 - Functional idioms for Common Lisp
;;;; Purpose: tests of folio2-taps
;;;; Author: mikel evins
;;;; Copyright: 2015 by mikel evins
;;;;
;;;; ***********************************************************************
(defsystem "folio2-taps-tests"
:serial t
:description "sequence and taps tests"
:author "mikel evins <[email protected]>"
:license "Lisp Lesser GNU Public License"
:depends-on ("folio2-taps" "lift")
:components ((:module "tests"
:serial t
:components ((:file "taps"))))
:perform (test-op (o c)
(symbol-call :net.bardcode.folio2.taps.tests :run-tap-tests)
(symbol-call :lift :describe-test-result
(symbol-value (find-symbol* :*test-result* :lift)) t)))
;;; (asdf:test-system :folio2-taps-tests)