phoenixRealWorld/test/phoenixRealWorld_web/controllers/page_controller_test.exs
ReyoKatsu 6431f6651a
init
2025-04-12 00:31:08 +09:00

8 lines
243 B
Elixir

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