ash_hq/test/ash_hq_web/controllers/page_controller_test.exs

9 lines
196 B
Elixir
Raw Normal View History

2022-03-21 17:43:24 +13:00
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