Hi, I've got a problem where specs are not always being checked during macro expansion. It seems to be reliably be checked when I load the code using cider (using cider-load-buffer), but not when running lein test at the terminal.
Code: (defproject macroexpand-spec-test "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "Eclipse Public License" :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[org.clojure/clojure "1.9.0-alpha17"]]) (ns macroexpand-spec-test.core-test (:require [clojure.test :refer :all] [macroexpand-spec-test.core :refer :all])) (deftest a-test (testing "FIXME, I fail." (is (thrown? Exception (macroexpand '(fish "not a symbol" 1)))))) (ns macroexpand-spec-test.core (:require [clojure.spec.alpha :as s])) (s/fdef fish :args (s/cat :func symbol? :args (s/* any?)) :ret any?) (defmacro fish [f & args] `(~f ~@args)) However, the minimal case works correctly: $ rlwrap java -cp /home/aviso/.m2/repository/org/clojure/clojure/1.9.0-alpha17/clojure-1.9.0-alpha17.jar:/home/aviso/.m2/repository/org/clojure/spec.alpha/0.1.123/spec.alpha-0.1.123.jar:/home/aviso/.m2/repository/org/clojure/core.specs.alpha/0.1.10/core.specs.alpha-0.1.10.jar clojure.main Clojure 1.9.0-alpha17 user=> (require '[clojure.spec.alpha :as s]) nil user=> (s/fdef fish :args (s/cat :func symbol? :args (s/* any?)) :ret any?) user/fish user=> (defmacro fish [f & args] `(~f ~@args)) #'user/fish user=> (macroexpand '(fish "not a symbol" 1)) CompilerException clojure.lang.ExceptionInfo: Call to user/fish did not conform to spec: In: [0] val: "not a symbol" fails at: [:args :func] predicate: symbol? .... Is this a bug in lein? I'm getting the same failure using gradle (which is where the problem first showed up, and I switched to lein to find a smaller failing case). Many thanks for any help, Ed -- 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 --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.