diff options
author | William Carroll <wpcarro@gmail.com> | 2020-01-24T10·53+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-01-24T10·53+0000 |
commit | e2e59c63e7899ea06e4273f0ee58a5842f6e3384 (patch) | |
tree | 6da5c4d86a70d03489d528d9ec013ef83d860dad | |
parent | 95d03facb3af93323101737d76470f190e7ca2ae (diff) |
Cleanup lisp directory
Removing the default.nix that I used to attempt to build prove, a Common Lisp unit testing library. Also removing the lisp module with the unit tests themselves.
-rw-r--r-- | lisp/default.nix | 16 | ||||
-rw-r--r-- | lisp/unit-testing.lisp | 13 |
2 files changed, 0 insertions, 29 deletions
diff --git a/lisp/default.nix b/lisp/default.nix deleted file mode 100644 index 0969c7abf7e2..000000000000 --- a/lisp/default.nix +++ /dev/null @@ -1,16 +0,0 @@ -{ depot ? import <depot> {}, - universe ? import <universe> {}, - ... -}: - -depot.nix.buildLisp.program { - name = "unit-testing"; - - deps = with universe.third_party.lisp; [ - prove - ]; - - srcs = [ - ./unit-testing.lisp - ]; -} diff --git a/lisp/unit-testing.lisp b/lisp/unit-testing.lisp deleted file mode 100644 index c0b3be9b4515..000000000000 --- a/lisp/unit-testing.lisp +++ /dev/null @@ -1,13 +0,0 @@ -(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) |