aboutsummaryrefslogtreecommitdiff
path: root/test/waev_web/controllers/page_controller_test.exs
blob: 9999b404911ac6b4e57043ae46bf88fab45e54fd (plain) (blame)
1
2
3
4
5
6
7
8
defmodule WaevWeb.PageControllerTest do
  use WaevWeb.ConnCase

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