5

一个典型的 Elixir 项目有这样的结构:

project
|-- lib
|   `-- my_module.ex
`-- test
    |-- my_module_test.exs
    `-- test_helper.exs

在编写节点项目时,我喜欢将我的测试模块放在他们正在测试的模块旁边。这可以使用 Jest 等工具轻松配置:

project
|-- lib
|   |-- my_module.ex
|   `-- my_module.test.exs
`-- test
    `-- test_helper.exs

是否可以在 Elixir/Exunit 中进行类似的设置?

4

1 回答 1

8

好的,为了将来的访问者,我将其作为答案。

混合文档明确声明

从命令行调用将在与项目目录中找到mix test的模式匹配的每个文件中运行测试。*_test.exs test

看起来ExUnit作者强烈不鼓励开发人员将测试放在其他地方。正如@harryg 发现的那样,它仍然是可能的。projectsettings 有tests_path变量,用于检查要在哪里找到测试(以及test_pattern模式),默认为"test""*_test.exs"

要将其重置为其他值,只需更新project回调添加以下两行:

  def project do
    [
      app: @app,
      version: @version,
      elixir: "~> 1.6",
      start_permanent: Mix.env() == :prod,
      ...
      test_paths: ".",
      test_pattern: "*_test.exs" # or something else
    ]
  end
于 2018-07-26T15:26:12.970 回答