X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests.lisp;h=fc3da0d203c7d1723ab4a5a2acea1f7c091a0fd8;hb=f076fbe094b1fffc07ad9f9c5bacd9631fcb73ec;hp=56eb2a574b8da402400189ada58fb748c7de53aa;hpb=4f21397f1d96da80fbac6f587cb384e56208b497;p=kmrcl.git diff --git a/tests.lisp b/tests.lisp index 56eb2a5..fc3da0d 100644 --- a/tests.lisp +++ b/tests.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2003 ;;;; -;;;; $Id: tests.lisp,v 1.4 2003/04/29 00:49:09 kevin Exp $ +;;;; $Id: tests.lisp,v 1.8 2003/05/05 21:36:50 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -20,10 +20,6 @@ (rem-all-tests) -(when (find-package '#:kmr-mop) - (pushnew :kmrtest-mop cl:*features*)) - -(deftest p1 t t) (deftest str.0 (substitute-chars-strings "" nil) "") (deftest str.1 (substitute-chars-strings "abcd" nil) "abcd") @@ -49,6 +45,21 @@ (deftest str.16 (nstring-trim-last-character "a") "") (deftest str.17 (nstring-trim-last-character "ab") "a") +(deftest str.18 (delimited-string-to-list "ab|cd|ef" #\|) + ("ab" "cd" "ef")) +(deftest str.19 (delimited-string-to-list "ab|cd|ef" #\| t) + ("ab" "cd" "ef")) +(deftest str.20 (delimited-string-to-list "") ("")) +(deftest str.21 (delimited-string-to-list "" #\space t) ("")) +(deftest str.22 (delimited-string-to-list "ab") ("ab")) +(deftest str.23 (delimited-string-to-list "ab" #\space t) ("ab")) +(deftest str.24 (delimited-string-to-list "ab|" #\|) ("ab" "")) +(deftest str.25 (delimited-string-to-list "ab|" #\| t) ("ab")) + +(eval-when (:compile-toplevel :load-toplevel :execute) + (when (find-package '#:kmr-mop) + (pushnew :kmrtest-mop cl:*features*))) + #+kmrtest-mop (progn (defclass credit-rating () @@ -87,4 +98,5 @@ ) ;; kmrcl-mop #+kmrtest-mop -(setq cl:*features* (delete :kmrtest-mop cl:*features*)) +(eval-when (:compile-toplevel :load-toplevel :execute) + (setq cl:*features* (delete :kmrtest-mop cl:*features*)))