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
2018-02-02 10:31:04 -05:00

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