chiya/test/chiya_web/controllers/page_controller_test.exs

10 lines
234 B
Elixir
Raw Permalink Normal View History

2023-03-05 16:07:40 +01:00
defmodule ChiyaWeb.PageControllerTest do
use ChiyaWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, ~p"/")
assert html_response(conn, 200) =~ "Title"
assert html_response(conn, 200) =~ "Subtitle"
2023-03-05 16:07:40 +01:00
end
end