1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
;;;; -*- mode: Lisp -*-
;;; This is in a separate .asd file help OS-level packaging by making
;;; the dependency graph of .asd files (as opposed to just ASDF
;;; systems) acyclic. See https://github.com/melisgl/try/issues/5.
(defsystem "named-readtables-test"
:description "Test suite for the Named-Readtables library."
:author "Tobias C. Rittweiler <trittweiler@common-lisp.net>"
:maintainer "Gábor Melis <mega@retes.hu>"
:mailto "mega@retes.hu"
:depends-on ("named-readtables" "try")
:pathname "test"
:serial t
:components
((:file "package")
(:file "tests"))
:perform (test-op (o c) (symbol-call :named-readtables-test '#:test)))
|