the_mesh/test/the_mesh_web/controllers/page_controller_test.exs

9 lines
200 B
Elixir
Raw Normal View History

2019-03-18 21:30:53 -04:00
defmodule TheMeshWeb.PageControllerTest do
use TheMeshWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, "/")
assert html_response(conn, 200) =~ "Welcome to Phoenix!"
end
end