X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=tests.lisp;h=6e4e64d74412ddffc7480505a9cc8e9342c72898;hp=d5c079f7692867c1b292b54b55cc10c7ef68442a;hb=14d0c045792f76bbc92f4d3304a608603d0b7524;hpb=298d0534004c26eb5a6881ea34658f59e180b63b diff --git a/tests.lisp b/tests.lisp index d5c079f..6e4e64d 100644 --- a/tests.lisp +++ b/tests.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2003 ;;;; -;;;; $Id: tests.lisp,v 1.6 2003/05/04 14:52:10 kevin Exp $ +;;;; $Id: tests.lisp,v 1.9 2003/05/06 01:43:14 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -45,15 +45,23 @@ (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 (ndelimited-string-to-list "ab|cd|ef") '("ab" "cd" "ef")) -(deftest str.20 (delimited-string-to-list "") nil) -(deftest str.21 (ndelimited-string-to-list "") nil) -(deftest str.22 (delimited-string-to-list "ab") '("ab")) -(deftest str.23 (ndelimited-string-to-list "ab") '("ab")) -(deftest str.24 (delimited-string-to-list "ab|") '("ab" "")) -(deftest str.25 (ndelimited-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")) + +(deftest ap1.1 (append1 '((a b) (c d)) (a b c d))) +(deftest ap1.2 (append1 nil) nil) +(deftest ap1.3 (append1 '((a b))) (a b)) +(deftest ap1.4 (append1 '((a))) (a)) +(deftest ap1.5 (append1 '((a) (b) (c d (e f g)))) (a b c d (e f g))) + (eval-when (:compile-toplevel :load-toplevel :execute) (when (find-package '#:kmr-mop) (pushnew :kmrtest-mop cl:*features*)))