slovocast/app/test/app_web/controllers/page_controller_test.exs

9 lines
217 B
Elixir
Raw Normal View History

2024-04-23 02:30:14 +00:00
defmodule AppWeb.PageControllerTest do
use AppWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, ~p"/")
assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
end
end