Method: (RESOLVE-DEPENDENCIES SYMBOL)

Documentation

A test which depends on a symbol is interpreted as `(AND ,DEPENDS-ON).

Source

(defmethod resolve-dependencies ((depends-on symbol))
  "A test which depends on a symbol is interpreted as `(AND
  ,DEPENDS-ON)."
  (run-resolving-dependencies (get-test depends-on)))
Source Context