remhash tests
authorDavid Vázquez <davazp@gmail.com>
Sun, 16 Feb 2014 19:38:07 +0000 (20:38 +0100)
committerDavid Vázquez <davazp@gmail.com>
Sun, 16 Feb 2014 19:38:07 +0000 (20:38 +0100)
tests/hash-tables.lisp

index abbec79..3dc7528 100644 (file)
   (test (equal (gethash "foo" ht) 10)))
 
 
+(let ((ht (make-hash-table :test #'equal)))
+  (setf (gethash "foo" ht) 10)
+  (test (eq (remhash "foo" ht) t))
+  (test (eq (remhash "foo" ht) nil))
+  (test (null (gethash "foo" ht))))
+