2024-05-27 12:53:37 +05:00
|
|
|
defmodule ComfycampWeb.PageControllerTest do
|
|
|
|
use ComfycampWeb.ConnCase
|
|
|
|
|
|
|
|
test "GET /", %{conn: conn} do
|
|
|
|
conn = get(conn, ~p"/")
|
2024-07-21 22:22:36 +05:00
|
|
|
assert html_response(conn, 200) =~ "Уютный домик"
|
2024-05-27 12:53:37 +05:00
|
|
|
end
|
|
|
|
end
|