rename page to home

This commit is contained in:
2021-09-10 00:28:53 -04:00
committed by oliviasculley
parent 192c25c9a9
commit 21a7160be4
14 changed files with 104 additions and 43 deletions

View File

@ -0,0 +1,8 @@
defmodule CanneryWeb.HomeControllerTest do
use CanneryWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, "/")
assert html_response(conn, 200) =~ "Welcome to Cannery"
end
end

View File

@ -1,8 +0,0 @@
defmodule CanneryWeb.PageControllerTest do
use CanneryWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, "/")
assert html_response(conn, 200) =~ "Welcome to Phoenix!"
end
end