1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 21:40:33 +02:00

(string-for-each, string-for-each-index): Add tests.

This commit is contained in:
Thien-Thi Nguyen 2001-08-24 22:06:05 +00:00
parent 4cf7528804
commit e5c5ac9240

View file

@ -2,17 +2,17 @@
;;;; Martin Grabmueller, 2001-05-07 ;;;; Martin Grabmueller, 2001-05-07
;;;; ;;;;
;;;; Copyright (C) 2001 Free Software Foundation, Inc. ;;;; Copyright (C) 2001 Free Software Foundation, Inc.
;;;; ;;;;
;;;; This program is free software; you can redistribute it and/or modify ;;;; This program is free software; you can redistribute it and/or modify
;;;; it under the terms of the GNU General Public License as published by ;;;; it under the terms of the GNU General Public License as published by
;;;; the Free Software Foundation; either version 2, or (at your option) ;;;; the Free Software Foundation; either version 2, or (at your option)
;;;; any later version. ;;;; any later version.
;;;; ;;;;
;;;; This program is distributed in the hope that it will be useful, ;;;; This program is distributed in the hope that it will be useful,
;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;;;; GNU General Public License for more details. ;;;; GNU General Public License for more details.
;;;; ;;;;
;;;; You should have received a copy of the GNU General Public License ;;;; You should have received a copy of the GNU General Public License
;;;; along with this software; see the file COPYING. If not, write to ;;;; along with this software; see the file COPYING. If not, write to
;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330, ;;;; the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
@ -161,7 +161,7 @@
(string=? "bla|delim|fasel" (string-join '("bla" "fasel") "|delim|" (string=? "bla|delim|fasel" (string-join '("bla" "fasel") "|delim|"
'infix))) 'infix)))
(pass-if-exception "empty list, strict infix" (pass-if-exception "empty list, strict infix"
exception:strict-infix-grammar exception:strict-infix-grammar
(string-join '() "|delim|" 'strict-infix)) (string-join '() "|delim|" 'strict-infix))
@ -1021,3 +1021,21 @@
(pass-if "upcase" (pass-if "upcase"
(string=? "FOO" (string-map char-upcase "foo")))) (string=? "FOO" (string-map char-upcase "foo"))))
(with-test-prefix "string-for-each"
(pass-if "copy"
(let* ((foo "foo")
(bar (make-string (string-length foo)))
(i 0))
(string-for-each
(lambda (c) (string-set! bar i c) (set! i (1+ i))) foo)
(string=? foo bar)))
(pass-if "index"
(let* ((foo "foo")
(bar (make-string (string-length foo))))
(string-for-each-index
(lambda (i) (string-set! bar i (string-ref foo i))) foo)
(string=? foo bar))))