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
2023-02-04 21:35:56 -06:00

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