Potion/test/potion_web/controllers/page_controller_test.exs
Hayden Hargreaves 7af441f975 (INIT): Project initialized!
Finally, its starting!
2025-05-26 20:30:38 -07:00

9 lines
223 B
Elixir

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