nulla/test/nulla_web/controllers/page_controller_test.exs
2025-07-01 11:29:54 +02:00

8 lines
221 B
Elixir

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