diff options
Diffstat (limited to 'testler')
| -rw-r--r-- | testler/test.lisp | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/testler/test.lisp b/testler/test.lisp new file mode 100644 index 0000000..5a04f0b --- /dev/null +++ b/testler/test.lisp @@ -0,0 +1,13 @@ +(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) +  ) | 
