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