memEx/test/memex_web/controllers/home_controller_test.exs
2022-11-18 23:45:24 -05:00

15 lines
264 B
Elixir

defmodule MemexWeb.HomeControllerTest do
@moduledoc """
Tests the home page
"""
use MemexWeb.ConnCase
@moduletag :home_controller_test
test "GET /", %{conn: conn} do
conn = get(conn, "/")
assert html_response(conn, 200) =~ "memex"
end
end