2017-12-08 09:58:14 +01:00
|
|
|
defmodule EventosWeb.PageControllerTest do
|
|
|
|
use EventosWeb.ConnCase
|
|
|
|
|
|
|
|
test "GET /", %{conn: conn} do
|
2018-07-27 10:45:35 +02:00
|
|
|
conn = get(conn, "/")
|
2018-01-13 23:33:03 +01:00
|
|
|
assert html_response(conn, 200)
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
end
|