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