This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
augie/webapp/test/augie_web/controllers/page_controller_test.exs

9 lines
182 B
Elixir
Raw Normal View History

2019-11-29 17:55:52 +13:00
defmodule AugieWeb.PageControllerTest do
use AugieWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, "/")
2019-12-06 14:35:28 +13:00
assert html_response(conn, 200) =~ "Augie"
2019-11-29 17:55:52 +13:00
end
end