File: named-readtables-test.asd

package info (click to toggle)
cl-named-readtables 20230828.git455fbaa-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 232 kB
  • sloc: lisp: 1,523; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 657 bytes parent folder | download
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)))