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