live_beats/test/live_beats_web/controllers/page_controller_test.exs
Chris McCord 85855f9939 Make it so 🚀
2021-09-02 14:00:57 -04:00

9 lines
204 B
Elixir

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