Files
phoenix-ausblick/test/outlook_web/controllers/page_controller_test.exs
Thelonius Kort 81466c3941 Initial commit
After mix phx.new
2022-12-26 14:55:17 +01:00

9 lines
225 B
Elixir

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