aboutsummaryrefslogtreecommitdiff
path: root/bob.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'bob.lisp')
-rw-r--r--bob.lisp8
1 files changed, 6 insertions, 2 deletions
diff --git a/bob.lisp b/bob.lisp
index 5d08c7f..16c5faa 100644
--- a/bob.lisp
+++ b/bob.lisp
@@ -24,13 +24,17 @@
(defpackage bob
(:use :cl)
- (:export :build :qload))
+ (:export :build :qload :tests))
(in-package :bob)
(defun qload ()
(ql:quickload :cantedraw))
-(defun build ()
+(defun tests ()
(qload)
+ (asdf:test-system :cantedraw))
+
+(defun build ()
+ (tests)
(asdf:make :cantedraw))