~theothornhill/cl-bare

885bfceeb661c4e1105d17ae9fb8a70b28939bef — Theodor Thornhill 3 years ago aba1ccc
Add asdf:test-system capability
2 files changed, 9 insertions(+), 8 deletions(-)

M cl-bare-tests.asd
M cl-bare.asd
M cl-bare-tests.asd => cl-bare-tests.asd +5 -5
@@ 1,11 1,11 @@

(asdf:defsystem :cl-bare-tests
(asdf:defsystem "cl-bare-tests"
  :description "Tests for cl-bare"
  :author "Theodor Thornhill <theo@thornhill.no>"
  :license "GPLv3"
  :version "0.0.1"
  :depends-on (:rove
               :cl-bare)
  :depends-on ("rove"
               "cl-bare")
  :components ((:module "tests"
                :components ((:file "package")
                             (:file "bare-tests")))))
                             (:file "bare-tests"))))
  :perform (test-op (o c) (symbol-call :rove '#:run :cl-bare-tests)))

M cl-bare.asd => cl-bare.asd +4 -3
@@ 1,9 1,10 @@
(asdf:defsystem :cl-bare
(asdf:defsystem "cl-bare"
  :description "Serialize and deserialize bare messages"
  :author "Theodor Thornhill <theo@thornhill.no>"
  :license "GPLv3"
  :version "0.0.1"
  :depends-on (:lisp-binary)
  :depends-on ("lisp-binary")
  :components ((:module "src"
                :components ((:file "package")
                             (:file "bare")))))
                             (:file "bare"))))
  :in-order-to ((test-op (test-op "cl-bare-tests"))))