X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests.lisp;h=fc3da0d203c7d1723ab4a5a2acea1f7c091a0fd8;hb=eefe5a5cc364731f05c560c8837895cbd97f7015;hp=811af3e17c7dea1f89749eb529584497db2b873e;hpb=606b476d83ebdc137aa32abd0b6c31ce8fa117de;p=kmrcl.git diff --git a/tests.lisp b/tests.lisp index 811af3e..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.7 2003/05/05 20:35:23 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 ;;;; @@ -45,10 +45,16 @@ (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.20 (delimited-string-to-list "") nil) -(deftest str.22 (delimited-string-to-list "ab") '("ab")) -(deftest str.24 (delimited-string-to-list "ab|") '("ab" "")) +(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)