-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathernestine-tests.asd
35 lines (32 loc) · 1.15 KB
/
ernestine-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
26
27
28
29
30
31
32
33
34
35
;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
;;;; *************************************************************************
;;;; FILE IDENTIFICATION
;;;;
;;;; Name: ernestine-tests.asd
;;;; Purpose: ASDF definition file for ernestine-tests package
;;;; Developer: Nicolas Lamirault <lam@tuxfamily.org>
;;;;
;;;; This file, part of ernestine, is Copyright (c) 2007 by Nicolas Lamirault
;;;;
;;;; ernestine users are granted the rights to distribute and use this software
;;;; as governed by the terms of the Lisp Lesser GNU Public License
;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
;;;;
;;;; $Id$
;;;;
;;;; *************************************************************************
(asdf:defsystem #:ernestine-tests
:name "ernestine-tests"
:author "Nicolas Lamirault <lam@tuxfamily.org>"
:version "0.4"
:licence "Lisp Lesser GNU General Public License"
:description "Ernestine Unit Tests"
:depends-on (#:ernestine
#:lisp-unit)
:serial t
:components
((:module :test
:components
((:file "package")
(:file "backend" :depends-on ("package"))
))))