mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
9 lines
217 B
Elixir
9 lines
217 B
Elixir
defmodule Chess.SessionControllerTest do
|
|
use ChessWeb.ConnCase
|
|
|
|
test "shows sign in form", %{conn: conn} do
|
|
conn = get conn, session_path(conn, :new)
|
|
assert html_response(conn, 200) =~ "Sign in"
|
|
end
|
|
end
|