X-Git-Url: http://git.kpe.io/?p=kmrcl.git;a=blobdiff_plain;f=tests.lisp;h=202145b2ec9a14990c581b222ad4ec8573e4a081;hp=6e4e64d74412ddffc7480505a9cc8e9342c72898;hb=2d4bff8ca1ad3c90f20b75b1b50badf4b6553f9a;hpb=13d4172e2d739e47d8488e06c2a050782aab7548 diff --git a/tests.lisp b/tests.lisp index 6e4e64d..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.9 2003/05/06 01:43:14 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 ;;;; @@ -56,11 +56,11 @@ (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))) +(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)