legendary-doc-site/apps/content_web/test/content/controllers/page_controller_test.exs
2020-07-20 19:15:11 +00:00

8 lines
180 B
Elixir

defmodule ContentWeb.PageControllerTest do
use ContentWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, "/index")
assert html_response(conn, 200)
end
end