analytics/test/plausible_web/controllers/page_controller_test.exs
2019-09-02 12:29:19 +01:00

11 lines
247 B
Elixir

defmodule PlausibleWeb.PageControllerTest do
use PlausibleWeb.ConnCase
describe "GET /" do
test "shows the landing page", %{conn: conn} do
conn = get(conn, "/")
assert html_response(conn, 200) =~ "Plausible"
end
end
end