]> git.jsancho.org Git - bongodb.git/blobdiff - tests/sample.scm
Replace VHashes with Hash Tables
[bongodb.git] / tests / sample.scm
index bd2cc6ef407a1de2acae76b126a25b661aff0edb..aeccc600e751a7684fc369767c6504c0184aa4cc 100644 (file)
 (test-assert (collection? col))
 
 ; Insert
-(set! col (insert col
-                 '((a . 1) (b . 2))
-                 '((a . 10) (b . 20))
-                 '((a . 1) (c . "hello world"))))
+(insert col
+       '((a . 1) (b . 2))
+       '((a . 10) (b . 20))
+       '((a . 1) (c . "hello world")))
 (test-eqv 3 (count col))
 
 ; Search
@@ -41,7 +41,7 @@
 (test-eqv 2 (length (find col ($not ($exists 'c)))))
 
 ; Update
-(set! col (update col ($exists 'c) ($set 'c "test")))
+(update col ($exists 'c) ($set 'c "test"))
 (test-eqv 1 (length (find col ($eq 'c "test"))))
 
 (test-end "bongodb")