send_it/test/send_it_web/controllers/page_controller_test.exs
2024-11-20 10:32:24 -07:00

9 lines
223 B
Elixir

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