mirror of
https://framagit.org/framasoft/mobilizon.git
synced 2024-12-23 00:14:48 +00:00
b54dae7e15
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
8 lines
179 B
Elixir
8 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
|