Implement set equality.
This commit is contained in:
parent
30664d10f8
commit
575c1cdb3d
7 changed files with 44 additions and 7 deletions
|
@ -161,14 +161,15 @@
|
|||
(test-equal? files+symlinks->files-dictionary
|
||||
(files+symlinks->files-dictionary
|
||||
'(joe (2803 . joe)))
|
||||
'((joe 2803)))
|
||||
(make-ldict '((joe 2803))))
|
||||
(test-equal? files+symlinks->files-dictionary
|
||||
(files+symlinks->files-dictionary
|
||||
'(joe
|
||||
(2803 . joe)
|
||||
(666 . nonexistent)))
|
||||
'((nonexistent error-0 666)
|
||||
(joe 2803)))
|
||||
(make-ldict
|
||||
'((joe 2803)
|
||||
(nonexistent error-0 666))))
|
||||
(test-true is-4digit-string? (is-4digit-string? "0000"))
|
||||
(test-false is-4digit-string? (is-4digit-string? "AAAA"))
|
||||
(test-false is-4digit-string? (is-4digit-string? "666"))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue