File: cl-markdown-test.asd

package info (click to toggle)
cl-markdown 20101006-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 556 kB
  • sloc: lisp: 5,863; makefile: 11
file content (33 lines) | stat: -rw-r--r-- 928 bytes parent folder | download | duplicates (2)
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 <gwking@metabang.com>"
  :maintainer "Gary Warren King <gwking@metabang.com>"
  :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"))))
  :depends-on (:cl-markdown
	       :lift
	       :trivial-shell))