1
0
mirror of https://github.com/danbee/chess synced 2025-03-04 08:39:06 +00:00
chess/test/controllers/page_controller_test.exs
2016-12-10 19:35:01 +01:00

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