8 lines
219 B
1
defmodule BlogWeb.PageControllerTest do
2
use BlogWeb.ConnCase
3
4
test "GET /", %{conn: conn} do
5
conn = get(conn, ~p"/")
6
assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
7
end
8
end
9