mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
9 lines
189 B
Elixir
9 lines
189 B
Elixir
defmodule Chess.PageControllerTest do
|
|
use Chess.ConnCase
|
|
|
|
test "GET /", %{conn: conn} do
|
|
conn = get conn, "/"
|
|
assert html_response(conn, 200) =~ "Welcome to Phoenix!"
|
|
end
|
|
end
|