1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00
chess/test/chess_web/controllers/session_controller_test.exs

9 lines
218 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