14 lines
234 B
Common Lisp
14 lines
234 B
Common Lisp
(defpackage :html-jen/testler
|
||
(:use :common-lisp :html-jen))
|
||
|
||
(in-package :html-jen/testler)
|
||
|
||
(defun test-test ()
|
||
(assert (= 3 (+ 1 2)))
|
||
(unless (= 3 2)
|
||
(error "hata")))
|
||
|
||
(defun testleri-çalıştır ()
|
||
;; (test-test)
|
||
)
|