From f076fbe094b1fffc07ad9f9c5bacd9631fcb73ec Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Mon, 5 May 2003 21:36:50 +0000 Subject: [PATCH] r4815: Auto commit for Debian build --- package.lisp | 4 +--- tests.lisp | 16 +++++++++++----- 2 files changed, 12 insertions(+), 8 deletions(-) diff --git a/package.lisp b/package.lisp index 5f6ec8f..a2d3e28 100644 --- a/package.lisp +++ b/package.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: package.lisp,v 1.25 2003/05/04 14:52:10 kevin Exp $ +;;;; $Id: package.lisp,v 1.26 2003/05/05 21:36:50 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -40,7 +40,6 @@ #:mapcar-append-string #:mapcar2-append-string #:delimited-string-to-list - #:ndelimited-string-to-list #:list-to-delimited-string #:flatten #:indent-spaces @@ -108,7 +107,6 @@ ;; From attrib-class.lisp #:attributes-class #:slot-attribute - #:generalized-equal ;; From buffered input diff --git a/tests.lisp b/tests.lisp index 811af3e..fc3da0d 100644 --- a/tests.lisp +++ b/tests.lisp @@ -7,7 +7,7 @@ ;;;; Author: Kevin M. Rosenberg ;;;; Date Started: Apr 2003 ;;;; -;;;; $Id: tests.lisp,v 1.7 2003/05/05 20:35:23 kevin Exp $ +;;;; $Id: tests.lisp,v 1.8 2003/05/05 21:36:50 kevin Exp $ ;;;; ;;;; This file is Copyright (c) 2000-2002 by Kevin M. Rosenberg ;;;; @@ -45,10 +45,16 @@ (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.20 (delimited-string-to-list "") nil) -(deftest str.22 (delimited-string-to-list "ab") '("ab")) -(deftest str.24 (delimited-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")) (eval-when (:compile-toplevel :load-toplevel :execute) (when (find-package '#:kmr-mop) -- 2.34.1