mirror of
https://github.com/plausible/analytics.git
synced 2024-11-26 23:27:54 +03:00
Adds test
This commit is contained in:
parent
1b0323f5c1
commit
7622621a1d
@ -32,6 +32,12 @@ defmodule PlausibleWeb.StatsControllerTest do
|
||||
assert html_response(conn, 200) =~ "stats-react-container"
|
||||
end
|
||||
|
||||
test "shows locked page if page is locked", %{conn: conn, user: user} do
|
||||
locked_site = insert(:site, locked: true, members: [user])
|
||||
conn = get(conn, "/" <> locked_site.domain)
|
||||
assert html_response(conn, 200) =~ "Site locked"
|
||||
end
|
||||
|
||||
test "can not view stats of someone else's website", %{conn: conn} do
|
||||
conn = get(conn, "/some-other-site.com")
|
||||
assert html_response(conn, 404) =~ "There's nothing here"
|
||||
|
Loading…
Reference in New Issue
Block a user