memEx/test/memex_web/views/error_view_test.exs
shibao 5a41d8b3e7
All checks were successful
continuous-integration/drone/push Build is passing
improve tests
2023-03-22 22:08:37 -04:00

20 lines
486 B
Elixir

defmodule MemexWeb.ErrorViewTest do
@moduledoc """
Tests the error view
"""
use MemexWeb.ConnCase, async: true
# Bring render/3 and render_to_string/3 for testing custom views
import Phoenix.View
@moduletag :error_view_test
test "renders 404.html" do
assert render_to_string(MemexWeb.ErrorView, "404.html", []) =~ "not found"
end
test "renders 500.html" do
assert render_to_string(MemexWeb.ErrorView, "500.html", []) =~ "internal server error"
end
end