2021-03-05 19:23:32 -05:00
|
|
|
defmodule Shift73kWeb.UserRegistrationControllerTest do
|
|
|
|
use Shift73kWeb.ConnCase, async: true
|
2020-09-12 20:07:02 -04:00
|
|
|
|
2021-03-05 19:23:32 -05:00
|
|
|
import Shift73k.AccountsFixtures
|
2020-09-12 20:07:02 -04:00
|
|
|
|
|
|
|
describe "GET /users/register" do
|
|
|
|
test "renders registration page", %{conn: conn} do
|
|
|
|
conn = get(conn, Routes.user_registration_path(conn, :new))
|
|
|
|
response = html_response(conn, 200)
|
2021-03-03 08:15:14 -05:00
|
|
|
assert response =~ "Register\n </h2>"
|
2021-03-01 13:42:26 -05:00
|
|
|
assert response =~ "Log in\n</a>"
|
|
|
|
assert response =~ "Register\n</a>"
|
2020-09-12 20:07:02 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
test "redirects if already logged in", %{conn: conn} do
|
2021-03-02 16:48:00 -05:00
|
|
|
to = Routes.user_registration_path(conn, :new)
|
|
|
|
conn = conn |> log_in_user(user_fixture()) |> get(to)
|
2020-09-12 20:07:02 -04:00
|
|
|
assert redirected_to(conn) == "/"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|