summaryrefslogtreecommitdiff
path: root/cider-test.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2015-11-13 09:19:31 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2015-11-13 09:19:31 +0200
commit608c92a962245d9ac5b564da22038860a231487d (patch)
tree1fede7058047ef46f67e62563f594fec6a19538e /cider-test.el
parent245096f060c0d0cfd5694396ec7c629d0ead6a65 (diff)
Font-lock ns references in cider-test minibuffer messages
Diffstat (limited to 'cider-test.el')
-rw-r--r--cider-test.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/cider-test.el b/cider-test.el
index 9866c6eb..05997c0a 100644
--- a/cider-test.el
+++ b/cider-test.el
@@ -330,7 +330,7 @@ With the actual value, the outermost '(not ...)' s-expression is removed."
(nrepl-dbind-response summary (test fail error)
(message
(propertize
- (format "Ran %d tests in %s. %d failures, %d errors." test ns fail error)
+ (format "Ran %d tests in %s. %d failures, %d errors." test (propertize ns 'face 'font-lock-type-face) fail error)
'face (cond ((not (zerop error)) 'cider-test-error-face)
((not (zerop fail)) 'cider-test-failure-face)
(t 'cider-test-success-face))))))
@@ -434,14 +434,14 @@ This uses the Leiningen convention of appending '-test' to the namespace name."
Upon test completion, results are echoed and a test report is optionally
displayed. When test failures/errors occur, their sources are highlighted."
(cider-test-clear-highlights)
- (message "Running tests in %s..." ns)
+ (message "Running tests in %s..." (propertize ns 'face 'font-lock-type-face))
(cider-nrepl-send-request
(list "ns" ns "op" (if retest "retest" "test")
"tests" tests "session" (cider-current-session))
(lambda (response)
(nrepl-dbind-response response (summary results status out err)
(cond ((member "namespace-not-found" status)
- (message "No tests namespace: %s" ns))
+ (message "No tests namespace: %s" (propertize ns 'face 'font-lock-type-face)))
(out (cider-emit-interactive-eval-output out))
(err (cider-emit-interactive-eval-err-output err))
(results