This commit is contained in:
2025-08-05 00:44:17 +01:00
commit 7825596c94
45 changed files with 2588 additions and 0 deletions

View File

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