Rename common-lisp directory to lisp
I could have renamed common-lisp to common_lisp. I think Nix prefers underscores to hyphens.
This commit is contained in:
parent
6108f8df01
commit
b6fa3941b3
4 changed files with 1 additions and 0 deletions
13
lisp/unit-testing.lisp
Normal file
13
lisp/unit-testing.lisp
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
(in-package #:cl-user)
|
||||
(defpackage #:my-test
|
||||
(:documentation "Unit testing in Common Lisp.")
|
||||
(:use #:cl))
|
||||
(in-package #:my-test)
|
||||
|
||||
(plan 3)
|
||||
|
||||
(ok (not (find 4 '(1 2 3))))
|
||||
(is 4 4)
|
||||
(isnt 1 #\1)
|
||||
|
||||
(finalize)
|
||||
Loading…
Add table
Add a link
Reference in a new issue