Fix docs
author |
Steve Losh <steve@stevelosh.com> |
date |
Thu, 07 Mar 2019 12:42:29 -0500 |
parents |
3f9040eb223f |
children |
8524e8a06be6 |
(asdf:defsystem :bobbin
:description "Simple (word) wrapping utilities for strings."
:author "Steve Losh <steve@stevelosh.com>"
:homepage "https://sjl.bitbucket.io/bobbin/"
:license "MIT"
:version "0.0.1"
:depends-on (:split-sequence)
:in-order-to ((asdf:test-op (asdf:test-op :bobbin/test)))
:serial t
:components ((:file "package")
(:module "src" :serial t
:components ((:file "main")))))
(asdf:defsystem :bobbin/test
:description "Test suite for bobbin"
:author "Steve Losh <steve@stevelosh.com>"
:license "MIT"
:depends-on (:bobbin :1am)
:serial t
:components ((:file "package.test")
(:module "test"
:serial t
:components ((:file "tests"))))
:perform (asdf:test-op (op system)
(funcall (read-from-string "bobbin.test:run-tests"))))