b54dae7e15
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
9 lines
179 B
Elixir
9 lines
179 B
Elixir
defmodule MobilizonWeb.PageControllerTest do
|
|
use MobilizonWeb.ConnCase
|
|
|
|
test "GET /", %{conn: conn} do
|
|
conn = get(conn, "/")
|
|
assert html_response(conn, 200)
|
|
end
|
|
end
|