updating the hash test

This commit is contained in:
Danny Yoo 2011-11-07 17:53:56 -05:00
parent a273a12091
commit d75e72d476
2 changed files with 16 additions and 0 deletions

View File

@ -21,6 +21,9 @@ not-found
1
1
1
#hash((1 . one) (2 . two) (3 . three) (4 . four))
#hasheqv((1 . one) (2 . two) (3 . three) (4 . four))
#hasheq((1 . one) (2 . two) (3 . three) (4 . four))
true
true
true

View File

@ -64,6 +64,19 @@
(hash-ref ht "test!")
(make-immutable-hash '((1 . one)
(2 . two)
(3 . three)
(4 . four)))
(make-immutable-hasheqv '((1 . one)
(2 . two)
(3 . three)
(4 . four)))
(make-immutable-hasheq '((1 . one)
(2 . two)
(3 . three)
(4 . four)))
(hash? (make-immutable-hash))
(hash? (make-immutable-hasheq))
(hash? (make-immutable-hasheqv))