ash_hq/test/ash_hq_web/controllers/page_controller_test.exs
Zach Daniel 867f9d5371 init
2022-03-21 00:43:24 -04:00

8 lines
196 B
Elixir

defmodule AshHqWeb.PageControllerTest do
use AshHqWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, "/")
assert html_response(conn, 200) =~ "Welcome to Phoenix!"
end
end