8 lines
174 B
Elixir
8 lines
174 B
Elixir
defmodule Content.PageControllerTest do
|
|
use Content.ConnCase
|
|
|
|
test "GET /", %{conn: conn} do
|
|
conn = get(conn, "/index")
|
|
assert html_response(conn, 200)
|
|
end
|
|
end
|