-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcl-string-random.asd
More file actions
26 lines (24 loc) · 847 Bytes
/
cl-string-random.asd
File metadata and controls
26 lines (24 loc) · 847 Bytes
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
(defsystem "cl-string-random"
:version "0.1.0"
:author "Windymelt"
:license "Apache License 2.0"
:depends-on (:cl-ppcre :trivia :iterate)
:components ((:module "src"
:components
((:file "main"))))
:description "Utility to generate string which matches specific regexp"
:long-description
#.(read-file-string
(subpathname *load-pathname* "README.markdown"))
:in-order-to ((test-op (test-op "cl-string-random/tests"))))
(defsystem "cl-string-random/tests"
:author "Windymelt"
:license "Apache License 2.0"
:depends-on ("cl-string-random"
"rove"
"iterate")
:components ((:module "tests"
:components
((:file "main"))))
:description "Test system for cl-string-random"
:perform (test-op (op c) (symbol-call :rove :run c)))