Introduction
Introduction Statistics Contact Development Disclaimer Help
tsplit-sequence.asd - clic - Clic is an command line interactive client for gop…
git clone git://bitreich.org/clic/ git://hg6vgqziawt5s4dj.onion/clic/
Log
Files
Refs
Tags
LICENSE
---
tsplit-sequence.asd (841B)
---
1 ;;; -*- Lisp -*-
2
3 (defsystem :split-sequence
4 :author "Arthur Lemmens <[email protected]>"
5 :maintainer "Sharp Lispers <[email protected]>"
6 :description "Splits a sequence into a list of subsequences
7 delimited by objects satisfying a test."
8 :license "MIT"
9 :version (:read-file-form "version.sexp")
10 :components ((:static-file "version.sexp")
11 (:file "split-sequence")))
12
13 (defsystem :split-sequence/tests
14 :author "Arthur Lemmens <[email protected]>"
15 :maintainer "Sharp Lispers <[email protected]>"
16 :description "Split-Sequence test suite"
17 :license "MIT"
18 :depends-on (:split-sequence :fiveam)
19 :components ((:file "tests")))
20
21 (defmethod perform ((o test-op) (c (eql (find-system :split-sequence))))
22 (load-system :split-sequence/tests)
23 (symbol-call :5am :run! :split-sequence))
You are viewing proxied material from bitreich.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.