chiya/test/chiya_web/controllers/page_controller_test.exs
2023-03-05 16:07:40 +01:00

8 lines
221 B
Elixir

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