X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=tests.lisp;h=bdeaa27885a29e1e64864c8edfd655bc231955c5;hb=5f0d98408c20ff43709fc654978d1a5e4a675f2d;hp=b68cecfe2dba87599ad5c1f106eb7c66982562a6;hpb=2359ec8676836fb4a99ea8c9450fadd35a3d248f;p=kmrcl.git diff --git a/tests.lisp b/tests.lisp index b68cecf..bdeaa27 100644 --- a/tests.lisp +++ b/tests.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2003 ;;;; -;;;; $Id: tests.lisp,v 1.13 2003/05/08 19:19:08 kevin Exp $ +;;;; $Id: tests.lisp,v 1.14 2003/05/11 21:51:44 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -94,6 +94,10 @@ (deftest css.4 (concat-separated-strings "|" '("ab" "cd") nil) "ab|cd") (deftest css.5 (concat-separated-strings "|" '("ab" "cd") nil '("ef")) "ab|cd|ef") +(deftest f.1 (filter #'(lambda (x) (when (oddp x) x)) + '(0 1 2 3 4 5 6 7 8 9)) (1 3 5 7 9)) +(deftest an.1 (appendnew '(a b c d) '(c c e f)) (a b c d e f)) + (eval-when (:compile-toplevel :load-toplevel :execute) (when (find-package '#:kmr-mop) (pushnew :kmrtest-mop cl:*features*)))