planning-poker/test/planningpoker_web/controllers/page_controller_test.exs
2020-05-02 18:22:49 -04:00

8 lines
212 B
Elixir

defmodule PlanningpokerWeb.PageControllerTest do
use PlanningpokerWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, "/")
assert html_response(conn, 200) =~ "Welcome to Phoenix!"
end
end