learning_phoenix/test/learning_phoenix_web/controllers/page_controller_test.exs
2025-08-12 13:23:45 +02:00

8 lines
241 B
Elixir

defmodule LearningPhoenixWeb.PageControllerTest do
use LearningPhoenixWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, ~p"/")
assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
end
end