这样:
Run one Clojure test (not all tests in a namespace), with fixtures, from the REPL
使用repl工作正常,如何使用Leinigen从命令行执行此操作?
答案 0 :(得分:28)
您正在寻找的可能是:
lein test :only my.namespace/my-test
请注意:
lein help test
输出:
"A default :only test-selector is available to run select tests. For example,
`lein test :only leiningen.test.test/test-default-selector` only runs the
specified test. A default :all test-selector is available to run all tests."