【发布时间】:2019-01-18 04:09:09
【问题描述】:
无法找出这个错误。
我有这个文件:
test/support/conn_case.ex
defmodule ProjectWeb.ConnCase do
@moduledoc """
This module defines the test case to be used by
tests that require setting up a connection.
Such tests rely on `Phoenix.ConnTest` and also
import other functionality to make it easier
to build common datastructures and query the data layer.
Finally, if the test case interacts with the database,
it cannot be async. For this reason, every test runs
inside a transaction which is reset at the beginning
of the test unless the test case is marked as async.
"""
use ExUnit.CaseTemplate
using do
quote do
# Import conveniences for testing with connections
use Phoenix.ConnTest
import ProjectWeb.Router.Helpers
# The default endpoint for testing
@endpoint ProjectWeb.Endpoint
end
end
end
这个配置在mix.ex
# Specifies which paths to compile per environment.
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
我对@987654325@进行了测试
defmodule ProjectWeb.PageControllerTest do
use ProjectWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get conn, "/"
assert html_response(conn, 200) =~ "OK"
end
end
仍然在运行mix test 时收到:
** (CompileError) test/controllers/page_controller_test.exs:2: 模块 ProjectWeb.ConnCase 未加载且找不到
【问题讨论】:
-
你有没有得到这个答案?
标签: testing phoenix-framework elixir-mix