X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;ds=sidebyside;f=tests.lisp;h=202145b2ec9a14990c581b222ad4ec8573e4a081;hb=2d4bff8ca1ad3c90f20b75b1b50badf4b6553f9a;hp=a84404ca1c2fa57768047770931244aec25cb175;hpb=fff759278b0089e16c650fe7023b41eeafee30e2;p=kmrcl.git diff --git a/tests.lisp b/tests.lisp index a84404c..202145b 100644 --- a/tests.lisp +++ b/tests.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2003 ;;;; -;;;; $Id: tests.lisp,v 1.5 2003/04/29 01:55:26 kevin Exp $ +;;;; $Id: tests.lisp,v 1.10 2003/05/07 16:03:11 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -45,6 +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 (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 (append-sublists '((a b) (c d)) (a b c d))) +(deftest ap1.2 (append-sublists nil) nil) +(deftest ap1.3 (append-sublists '((a b))) (a b)) +(deftest ap1.4 (append-sublists '((a))) (a)) +(deftest ap1.5 (append-sublists '((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*)))