Files
rsh26_pool_example/test/rsh26pool_web/controllers/page_controller_test.exs
T
2026-07-04 18:05:14 +09:00

9 lines
229 B
Elixir

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