conserve.asd @ 5a40b5b38fe3

Add some tests
author Steve Losh <steve@stevelosh.com>
date Wed, 26 Dec 2018 21:24:37 -0500
parents 72a8f71c2670
children 7b67fe4c902a
(asdf:defsystem :conserve
  :description "Yet Another CSV Library for Common Lisp."

  :author "Steve Losh <steve@stevelosh.com>"
  :homepage "https://sjl.bitbucket.io/conserve/"
  :license "MIT/X11"
  :version "0.0.1"

  :depends-on ()

  :in-order-to ((asdf:test-op (asdf:test-op :conserve/test)))

  :serial t
  :components ((:file "package")
               (:module "src" :serial t :components
                ((:file "main")))))

(asdf:defsystem :conserve/test
  :description
  "Test suite for conserve."

  :author "Steve Losh <steve@stevelosh.com>"

  :license "MIT/X11"

  :depends-on (:conserve :1am :cl-csv :fare-csv)

  :serial t
  :components ((:file "package.test")
               (:module "test" :serial t :components
                ((:file "tests"))))
  :perform (asdf:test-op (op system)
             (funcall (read-from-string "conserve/test:run-tests"))))