我正在编写一个我想要测试的项目,它既可以自动使用ExUnit,也可以与iex交互使用。说我的项目看起来像这样:
[mto@bgobuildwin8g sample]$ tree
.
├── config
│ └── config.exs
├── fixtures
│ └── complex_struct.exs
├── lib
│ └── the_function.ex
├── mix.exs
├── README.md
└── test
└── the_test.exs
4 directories, 7 files
[mto@bgobuildwin8g sample]$ cat lib/the_function.ex
defmodule TheFunction do
def the_function ({a, b, c}) do
a / b + c
end
end
[mto@bgobuildwin8g sample]$ cat fixtures/complex_struct.exs
defmodule ComplexStruct do
def complex_struct do
{2, 1, 1}
end
end
[mto@bgobuildwin8g sample]$ cat test/the_test.exs
defmodule IexandtestTest do
Code.load_file("fixtures/complex_struct.exs")
use ExUnit.Case
doctest Iexandtest
test "the test" do
assert (TheFunction.the_function (ComplexStruct.complex_struct())) == 3
end
end
我现在可以运行混合测试,它会找到fixtures / complex_struct.exs,以便测试成功执行。我还想使用以下命令调试我的代码
iex -S mix
这样我可以访问lib / the_function.ex并可以调试它。
iex(1)> TheFunction.the_function({1,2,3})
3.5
但我无法访问fixtures / complex_struct.exs,除非我像这样加载它:
iex(1)> TheFunction.the_function(ComplexStruct.complex_struct())
** (UndefinedFunctionError) undefined function ComplexStruct.complex_struct/0 (module ComplexStruct is not available)
ComplexStruct.complex_struct()
iex(1)> Code.load_file("fixtures/complex_struct.exs")
[{ComplexStruct,
<<70, 79, 82, 49, 0, 0, 5, 28, 66, 69, 65, 77, 69, 120, 68, 99, 0, 0, 0, 137, 131, 104, 2, 100, 0, 14, 101, 108, 105, 120, 105, 114, 95, 100, 111, 99, 115, 95, 118, 49, 108, 0, 0, 0, 4, 104, 2, 100, 0, ...>>}]
iex(2)> TheFunction.the_function(ComplexStruct.complex_struct())
3.0
什么决定了iex加载了什么?当我运行iex -S mix时,如何在lib和所有灯具中使用所有模块?
答案 0 :(得分:2)
只有您:elixirc_paths
的{{1}}函数返回值的project/0
键指定的目录中的文件才会编译到您的应用中。 mix.exs
的默认值为:elixirc_paths
。
要在["lib"]
中编译Elixir文件,您需要将扩展名从fixtures
更改为exs
,然后将ex
添加到fixtures
:
:elixirc_paths
在此之后,您将能够从def project do
[app: :m,
version: "0.1.0",
...,
elixirc_paths: ["lib", "fixtures"]]
end
和测试中访问ComplexStruct
,并且您不再需要在测试模块中调用iex
。