diff options
Diffstat (limited to 'bob.lisp')
-rw-r--r-- | bob.lisp | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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)) |