chore: begin to add tests

This commit is contained in:
Edward
2021-01-02 22:24:31 -08:00
parent 1259838639
commit 6aebcfe4dc
2 changed files with 51 additions and 0 deletions

View File

@ -21,5 +21,17 @@
:depends-on (:data-lens
:alexandria)
:serial t
:in-order-to ((test-op (test-op :data-lens/transducer/test)))
:components ((:file "package")
(:file "transducers")))
(asdf:defsystem #:data-lens/transducer/test
:description "tests for the transducers"
:author "Edward Langley <el-cl@elangley.org>"
:license "MIT"
:depends-on (:data-lens/beta/transducer
:fiveam)
:serial t
:perform (test-op (o c) (symbol-call :fiveam '#:run! :data-lens.transducers))
:components ((:module "t"
:components ((:file "transducer")))))