2020-12-15 08:45:34 +01:00
|
|
|
defmodule RecycledCloudWeb.PageControllerTest do
|
|
|
|
use RecycledCloudWeb.ConnCase
|
|
|
|
|
|
|
|
test "GET /", %{conn: conn} do
|
|
|
|
conn = get(conn, "/")
|
2021-01-04 13:14:16 +01:00
|
|
|
assert html_response(conn, 200) =~ "Welcome on"
|
2020-12-15 08:45:34 +01:00
|
|
|
end
|
|
|
|
end
|