This commit is contained in:
2026-07-04 19:27:17 +09:00
parent 34cd5ad2e7
commit ba6a0b2c17
30 changed files with 2935 additions and 247 deletions
@@ -1,8 +1,14 @@
defmodule Rsh26poolWeb.PageControllerTest do
use Rsh26poolWeb.ConnCase
test "GET /", %{conn: conn} do
test "GET / renders the Japanese home with create and enter entry points", %{conn: conn} do
conn = get(conn, ~p"/")
assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
response = html_response(conn, 200)
assert response =~ "みんなで"
assert response =~ "ルームを作成"
assert response =~ "ルームに参加"
assert response =~ ~p"/create"
assert response =~ ~p"/enter"
end
end