r4815: Auto commit for Debian build
[kmrcl.git] / tests.lisp
index 56eb2a574b8da402400189ada58fb748c7de53aa..fc3da0d203c7d1723ab4a5a2acea1f7c091a0fd8 100644 (file)
@@ -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
 ;;;;
 (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")
 (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*)))