cl-digraph.test.asd @ e7ed5e5a2d9e
default tip
Use ERROR instead of an ECASE form with no clauses.
SBCL outputs compilation warnings for ECASE forms missing clauses and that
causes Quicklisp test failures.
author |
Robert Brown <robert.brown@gmail.com> |
date |
Sat, 04 Nov 2023 10:42:34 -0400 |
parents |
7e80eda84170 |
children |
(none) |
(asdf:defsystem :cl-digraph.test
:description "Test suite for cl-digraph"
:author "Steve Losh <steve@stevelosh.com>"
:license "MIT"
:depends-on (:cl-digraph
:alexandria
:1am)
:serial t
:components ((:file "package.test")
(:module "test"
:serial t
:components ((:file "tests"))))
:perform (asdf:test-op
(op system)
(uiop:symbol-call :digraph.test :run-tests)))