This commit is contained in:
Mirai Kumiko 2025-06-21 10:24:40 +02:00
parent f88c247a5c
commit 577e273a1b
Signed by: miraikumiko
GPG key ID: 3F178B1B5E0CB278
5 changed files with 35 additions and 3 deletions

View file

@ -0,0 +1,9 @@
defmodule NullaWeb.PageControllerTest do
use NullaWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, ~p"/")
assert String.length(html_response(conn, 200)) > 0
end
end