coleslaw/tests/tests.lisp
Javier Olaechea fc71373709 Test COLESLAW-CONF:*BASEDIR*
It should point to coleslaw's top level directory.
2016-09-20 23:38:03 -05:00

12 lines
270 B
Common Lisp

(defpackage :coleslaw-tests
(:use :cl :prove))
(in-package :coleslaw-tests)
(plan 1)
(diag "COLESLAW-CONF:*BASEDIR* points to Coleslaw's top level directory")
(is (car (last (pathname-directory coleslaw-conf:*basedir*)))
"coleslaw" :test #'string=)
(finalize)