summaryrefslogtreecommitdiff
path: root/test/aggiedit_web/controllers/page_controller_test.exs
blob: 4819f825967588ed226f27265c3a69fe5d58ada9 (plain)
1
2
3
4
5
6
7
8
defmodule AggieditWeb.PageControllerTest do
  use AggieditWeb.ConnCase

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