clojure-test-mode elpa version still out of date?

2010-09-10 Thread User7

I'm using emacs starter kit and clojure-test-mode 1.4 installed using
elpa.  Running clojure-tests-run-tests seems to work fine, but clojure-
test-run-test seems flakey.  This blog post from May says the elpa
version is out of date.

http://otfrom.wordpress.com/2010/05/16/leiningen-clojure-1-2-and-emacs/

However, now clojure-test-mode won’t work. The version is elpa isn’t
new enough (you are using elpa and emacs-starter-kit aren’t you?) so
we need to get it from technomancy’s github.

Does anybody know if the elpa version is still out of date?

-- 
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


Re: clojure-test-mode elpa version still out of date?

2010-09-10 Thread User7

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