summaryrefslogtreecommitdiffstats
path: root/srfi-225-test.scm
diff options
context:
space:
mode:
authorGravatar Arvydas Silanskas 2021-11-11 20:09:12 +0200
committerGravatar Arvydas Silanskas 2021-11-11 20:09:12 +0200
commitf1b1e37b57ff1ecf1e7dd18dbb9204c402edf3c2 (patch)
treed9c2e182d0bdbe1790afdf693f15b4adf23720a6 /srfi-225-test.scm
parentMerge remote-tracking branch 'arvyy/master' (diff)
remove min-key, max-key, plist; add dependencies list to html
Diffstat (limited to 'srfi-225-test.scm')
-rw-r--r--srfi-225-test.scm46
1 files changed, 1 insertions, 45 deletions
diff --git a/srfi-225-test.scm b/srfi-225-test.scm
index 9de1e7b..31f862d 100644
--- a/srfi-225-test.scm
+++ b/srfi-225-test.scm
@@ -135,34 +135,6 @@
(test-equal (dict-ref/default dtd (alist->dict '((a . b))) 'a 'c) 'b)
(test-equal (dict-ref/default dtd (alist->dict '((a* . b))) 'a 'c) 'c))
- (test-group
- "dict-min-key"
- (define dict (alist->dict '((2 . a) (1 . b) (3 . c))))
- (call/cc (lambda (cont)
- (with-exception-handler
- (lambda (err)
- (unless (let* ((cmp (dict-comparator dtd (alist->dict '())))
- (ordering (and cmp (comparator-ordering-predicate cmp))))
- ordering)
- (cont #t)))
- (lambda ()
- (define key (dict-min-key dtd dict))
- (test-equal 1 key))))))
-
- (test-group
- "dict-max-key"
- (define dict (alist->dict '((2 . a) (3 . b) (1 . c))))
- (call/cc (lambda (cont)
- (with-exception-handler
- (lambda (err)
- (unless (let* ((cmp (dict-comparator dtd (alist->dict '())))
- (ordering (and cmp (comparator-ordering-predicate cmp))))
- ordering)
- (cont #t)))
- (lambda ()
- (define key (dict-max-key dtd dict))
- (test-equal 3 key))))))
-
(when mutable?
(test-skip 1))
(test-group
@@ -886,8 +858,7 @@
minimal-alist-dtd
alist-copy
#f
- #f
- ))
+ #f))
(test-group
"alist"
@@ -903,21 +874,6 @@
"alist dict-comparator"
(test-assert (not (dict-comparator alist-equal-dtd '())))))
-(test-group
- "plist"
- (do-test
- plist-dtd
- (lambda (alist)
- (apply append
- (map (lambda (pair)
- (list (car pair) (cdr pair)))
- alist)))
- #f
- #f)
- (test-group
- "plist dict-comparator"
- (test-assert (not (dict-comparator plist-dtd '())))))
-
(cond-expand
((and (library (srfi 69))
(not gauche)) ;; gauche has bug with comparator retrieval from srfi 69 table