nights/test/nights_web/controllers/events_controller_test.exs

9 lines
198 B
Elixir
Raw Normal View History

2024-09-20 12:41:38 +00:00
defmodule NightsWeb.EventsControllerTest do
use NightsWeb.ConnCase
test "GET /", %{conn: conn} do
conn = get(conn, ~p"/")
assert html_response(conn, 200) =~ "Upcoming Events"
end
end