cl-scopes/testing.lisp

12 lines
187 B
Common Lisp

;;; cl-scopes/testing
;;;; simple testing library
(defpackage :scopes/testing
(:use :common-lisp)
(:export #:test-suite))
(in-package :scopes/testing)
(defun test-suite ()
nil)