I downloaded clojure-mode from http://github.com/technomancy/clojure-mode and installed both clojure-mode.el and clojure-test-mode.el using M-x package-install-from-buffer. On the following set of tests, M-x clojure-test-run-tests seems to work, but M-x clojure-test-run-test on just the pass function seems to run against the entire file and (is false "No tests have been written." gets highlighted red in the buffer).
(ns test-test.test.core (:use [clojure.test])) (deftest pass (is true "This test should pass.")) (deftest replace-me ;; FIXME: write (is false "No tests have been written.")) The History section in clojure-test-mode.el contains ;; 1.4: 2010-05-13 ;; * Fix jump-to-test ;; * Update to work with Clojure 1.2. ;; * Added next/prev problem. ;; * Depend upon slime, not swank-clojure. ;; * Don't move the mark when activating. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en