X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests.lisp;h=5b7c7be7061fbbe8742ffbfc4646fba0407b5492;hb=0e37bb279e050a6a5afe049dff75cd46d3016290;hp=fc3da0d203c7d1723ab4a5a2acea1f7c091a0fd8;hpb=f076fbe094b1fffc07ad9f9c5bacd9631fcb73ec;p=kmrcl.git diff --git a/tests.lisp b/tests.lisp index fc3da0d..5b7c7be 100644 --- a/tests.lisp +++ b/tests.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2003 ;;;; -;;;; $Id: tests.lisp,v 1.8 2003/05/05 21:36:50 kevin Exp $ +;;;; $Id: tests.lisp,v 1.12 2003/05/07 16:07:13 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -55,7 +55,13 @@ (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 apsl.1 (append-sublists '((a b) (c d))) (a b c d)) +(deftest apsl.2 (append-sublists nil) nil) +(deftest apsl.3 (append-sublists '((a b))) (a b)) +(deftest apsl.4 (append-sublists '((a))) (a)) +(deftest apsl.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*)))