2016-04-04 4 views
-1

現在のClojureプロジェクトでlein testを実行すると、2回のテストでエラーが発生しますが、Clojure LeiningenテストFAILがエラーサマリーに表示されない

$ lein test 
FAIL in [email protected] (config.clj:53) 
expected: (= (some-fn some-input) (expected-output)) 
    actual: (not (= (actual-output) (expected-output))) 

FAIL in [email protected] (config.clj:53) 
expected: (= (some-fn some-other-input) (other-expected-output)) 
    actual: (not (= (other-actual-output) (other-expected-output))) 

lein test project.test.config 

lein test project.test.other-module 

lein test project test.another-module 

lein test project test.one-more 

Ran 8 tests containing 71 assertions. 
0 failures, 0 errors. 

FAIL行と最後の行:以下の出力スニペットを参照してください。以前はこのプロジェクトでテストが行​​われていましたが、この不正な動作に影響したコードの変更をlein testから切り離すことはできません。

これまで誰も見てきたことがありますか?

+1

[MCVE](http://stackoverflow.com/help/mcve)でコードを提供すれば、何が起きているのかが分かると助かります。 –

答えて

1

私はこれを投稿した直後に問題を発見しましたが、他の人に質問を残しています。私は誤ってdeftestの代わりにdefに私のテストを入れました。

関連する問題