我如何 运行 使用 `lein test` 自动测试指定函数生成的测试?
How can I run automatically tests generated by spec'ed functions with `lein test`?
我有指定的功能,所以我可以 运行 使用 check 自动生成测试。我如何使用 lein test
运行 这些测试?
我正在尝试
(deftest check-suggest-connections
(is (= nil (spectest/summarize-results (spectest/check `suggest-connections)))))
在我的 core_test.clj
但我得到了
java.util.concurrent.ExecutionException: Syntax error compiling at (clojure/test/check/clojure_test.cljc:95:1).
Caused by: clojure.lang.Compiler$CompilerException: Syntax error compiling at (clojure/test/check/clojure_test.cljc:95:1).
#:clojure.error{:phase :compile-syntax-check, :line 95, :column 1, :source "clojure/test/check/clojure_test.cljc"}
我在 here
中找到了 Alex Miller 描述的解决方法
只需要在 project.clj
中添加 :monkeypatch-clojure-test false
。
我有指定的功能,所以我可以 运行 使用 check 自动生成测试。我如何使用 lein test
运行 这些测试?
我正在尝试
(deftest check-suggest-connections
(is (= nil (spectest/summarize-results (spectest/check `suggest-connections)))))
在我的 core_test.clj
但我得到了
java.util.concurrent.ExecutionException: Syntax error compiling at (clojure/test/check/clojure_test.cljc:95:1).
Caused by: clojure.lang.Compiler$CompilerException: Syntax error compiling at (clojure/test/check/clojure_test.cljc:95:1).
#:clojure.error{:phase :compile-syntax-check, :line 95, :column 1, :source "clojure/test/check/clojure_test.cljc"}
我在 here
中找到了 Alex Miller 描述的解决方法只需要在 project.clj
中添加 :monkeypatch-clojure-test false
。