2024-05-21 23:48:50 +02:00
|
|
|
defmodule SlideLifeWeb.PageControllerTest do
|
|
|
|
use SlideLifeWeb.ConnCase
|
2024-05-21 21:57:36 +02:00
|
|
|
|
|
|
|
test "GET /", %{conn: conn} do
|
|
|
|
conn = get(conn, ~p"/")
|
|
|
|
assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
|
|
|
|
end
|
|
|
|
end
|