- Fix TERM-SYNONYMS.
[cl-trane.git] / trane-template.asd
blob0ca04037327423f45128c43b6175f9741820ec57
1 ;;; -*- lisp -*-
3 ;;;; Copyright (c) 2008, Maciej Pasternacki <maciej@pasternacki.net>
4 ;;;; All rights reserved.  This file is available on the terms
5 ;;;; detailed in COPYING file included with it.
7 (defpackage #:trane-TEMPLATE.system
8   (:use #:common-lisp #:asdf))
9 (in-package #:trane-TEMPLATE.system)
11 (defsystem #:trane-TEMPLATE
12   :name "Trane TEMPLATE"
13   :description "trane-TEMPLATE"
14   :author "Maciej Pasternacki <maciej@pasternacki.net>"
15   :licence "BSD sans advertising clause, see file COPYING for details"
16   :components ((:module #:src :components ((:file "TEMPLATE"))))
17   :depends-on ())
19 (defsystem #:trane-TEMPLATE.test
20   :description "Test suite for trane-TEMPLATE"
21   :components ((:module #:t :components ((:file "TEMPLATE"))))
22   :depends-on (#:trane-TEMPLATE #:fiveam))
24 (defmethod perform ((op asdf:test-op)
25                     (system (eql (find-system :trane-TEMPLATE))))
26   "Perform unit tests for trane-TEMPLATE"
27   (asdf:operate 'asdf:load-op :trane-TEMPLATE.test)
28   (funcall (intern (string :run!) (string :it.bese.fiveam)) :trane-TEMPLATE))