towerops/test/towerops_web/controllers/page_controller_test.exs
2025-12-21 11:10:43 -06:00

8 lines
227 B
Elixir

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