legendary-doc-site/apps/content/test/content_web/controllers/page_controller_test.exs

9 lines
174 B
Elixir
Raw Normal View History

defmodule Content.PageControllerTest do
use Content.ConnCase
2020-07-02 21:08:53 +00:00
test "GET /", %{conn: conn} do
2020-07-17 23:30:31 +00:00
conn = get(conn, "/index")
2020-07-05 18:56:21 +00:00
assert html_response(conn, 200)
2020-07-02 21:08:53 +00:00
end
end