test/base.lisp @ 6b2d21a74a45

Remove the awful gnuplot-expr to avoid exporting X
author Steve Losh <steve@stevelosh.com>
date Sun, 16 Dec 2018 18:26:55 -0500
parents 566c907b762a
children 6bf064d46006
(in-package :losh.test)


(defmacro define-test (name &body body)
  `(test ,(intern (concatenate 'string (symbol-name 'test-) (symbol-name name)))
    (let ((*package* ,*package*))
      ,@body)))

(defun run-tests ()
  (1am:run))