Fix typo.
[counted-feature-tests.git] / counted-feature-tests.asd
1 ;;; -*- mode: lisp; syntax: common-lisp; coding: utf-8; package: cl-user; -*-
2
3 ;;; parts of this system are taken from SBCL:
4
5 ;;;; This software is part of the SBCL system. See the README file for
6 ;;;; more information.
7 ;;;;
8 ;;;; This software is derived from the CMU CL system, which was
9 ;;;; written at Carnegie Mellon University and released into the
10 ;;;; public domain. The software is in the public domain and is
11 ;;;; provided with absolutely no warranty. See the COPYING and CREDITS
12 ;;;; files for more information.
13
14 (in-package #:cl-user)
15
16 (asdf:defsystem #:counted-feature-tests
17   #+asdf-unicode :encoding #+asdf-unicode :utf-8
18   :description "Extended feature tests syntax."
19   :long-description "Extends standard feature tests with numeric prefix."
20   :author "Olof-Joachim Frahm <olof@macrolet.net>"
21   :licence "Public Domain"
22   :components ((:file "syntax"))
23   :in-order-to ((asdf:test-op (asdf:test-op #:counted-feature-tests-tests)))
24   :perform (asdf:test-op :after (operation component)
25              (funcall (intern (symbol-name '#:run!) '#:fiveam)
26                       (intern (symbol-name '#:counted-feature-tests)
27                               '#:counted-feature-tests-tests))))
28
29 (asdf:defsystem #:counted-feature-tests-tests
30   :author "Olof-Joachim Frahm <olof@macrolet.net>"
31   :depends-on (#:counted-feature-tests #:fiveam)
32   :components ((:file "tests")))