-
Notifications
You must be signed in to change notification settings - Fork 16
/
cl-markdown-test.asd
35 lines (31 loc) · 985 Bytes
/
cl-markdown-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
31
32
33
;;; -*- Mode: Lisp; package: CL-USER; Syntax: Common-lisp; Base: 10 -*-
(in-package #:common-lisp-user)
(defpackage #:cl-markdown-test-system (:use #:cl #:asdf))
(in-package #:cl-markdown-test-system)
(defsystem cl-markdown-test
:author "Gary Warren King <[email protected]>"
:maintainer "Gary Warren King <[email protected]>"
:licence "MIT Style License"
:components ((:module
"setup"
:pathname "unit-tests/"
:components
((:file "package")
(:file "utilities"
:depends-on ("package"))
(:file "test-markdown"
:depends-on ("package"))))
(:module
"unit-tests"
:depends-on ("setup")
:components ((:file "test-chunkers")
(:file "test-snippets")
(:file "test-links")
(:file "test-brackets-and-includes")
(:file "brackets-with-empty-lines")
(:file "test-headers")
(:file "test-dl")
(:file "test-anchors"))))
:depends-on (:cl-markdown
:lift
:trivial-shell))