more restrictive test naming
[sbcl.git] / tests / interface.impure.lisp
index ad10e6d..175edce 100644 (file)
     "bar"
     (incf x y)))
 
-(with-test (:name (documentation closure))
+(with-test (:name (documentation :closure))
   (assert (string= (documentation 'docfoo 'function) "bar"))
   (assert (string= (setf (documentation 'docfoo 'function) "baz") "baz"))
   (assert (string= (documentation 'docfoo 'function) "baz"))
   (assert (not (setf (documentation 'docfoo 'function) nil)))
   (assert (not (documentation 'docfoo 'function))))
 
-(with-test (:name (documentation built-in-macro) :skipped-on '(not :sb-doc))
+(with-test (:name (documentation :built-in-macro) :skipped-on '(not :sb-doc))
   (assert (documentation 'trace 'function)))
 
-(with-test (:name (documentation built-in-function) :skipped-on '(not :sb-doc))
+(with-test (:name (documentation :built-in-function) :skipped-on '(not :sb-doc))
   (assert (documentation 'cons 'function)))
 
 (with-test (:name :describe-generic-function-with-assumed-type)