d547ee6f8d
Using `mix phx.new music_library --database sqlite3 --binary-id --no-mailer`
9 lines
235 B
Elixir
9 lines
235 B
Elixir
defmodule MusicLibraryWeb.PageControllerTest do
|
|
use MusicLibraryWeb.ConnCase
|
|
|
|
test "GET /", %{conn: conn} do
|
|
conn = get(conn, ~p"/")
|
|
assert html_response(conn, 200) =~ "Peace of mind from prototype to production"
|
|
end
|
|
end
|