Add a couple of unit tests
More to come later (hopefully).
author |
Steve Losh <steve@stevelosh.com> |
date |
Sun, 17 Jun 2018 14:44:31 -0700 |
parents |
1a0146c5e62d |
children |
de9d10a9b4b5 |
(asdf:defsystem :losh
:name "losh"
:description "My personal utility belt library."
:author "Steve Losh <steve@stevelosh.com>"
:license "MIT"
:version "0.0.1"
:in-order-to ((asdf:test-op (asdf:test-op :losh/test)))
:depends-on (:iterate
#+sbcl :sb-sprof
)
:serial t
:components
((:module "vendor"
:serial t
:components ((:file "quickutils")))
(:file "package")
(:file "losh")))
(asdf:defsystem :losh/test
:description "Test suite for losh."
:author "Steve Losh <steve@stevelosh.com>"
:license "MIT"
:depends-on (:losh :1am)
:serial t
:components ((:module "test"
:serial t
:components ((:file "package")
(:file "base")
(:file "control-flow"))))
:perform (asdf:test-op (op system)
(funcall (read-from-string "losh.test:run-tests"))))