about summary refs log tree commit diff
path: root/lisp/unit-testing.lisp
blob: c0b3be9b4515230101ca380fc754d12d5ced7bf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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)