planning-poker/test/planningpoker_web/controllers/page_controller_test.exs

9 lines
212 B
Elixir
Raw Normal View History

2020-05-02 21:55:20 +00:00
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