Elixir プロジェクト用にいくつかのテストを作成し、test/
ディレクトリに配置しました。を実行するmix test
と、次のようになります。
$ mix test
Test patterns did not match any file:
それだけです、その後は何もありません。テストのパスを手動で設定する必要がありますか? 簡単なGoogle検索では何も明らかになりませんでした。
これは私のすべてのテストがどのように見えるかです:
# project_dir/test/my_app/some_module.exs
defmodule MyApp.SomeModule.Test do
use ExUnit.Case
doctest MyApp.SomeModule
test "method 1" do
assert MyApp.SomeModule.method_1_works?
end
test "method 2" do
assert MyApp.SomeModule.method_2_works?
end
end