as_deps_example/apps/hello_world_web/test/hello_world_web/views/error_view_test.exs

15 lines
429 B
Elixir

defmodule HelloWorldWeb.ErrorViewTest do
use HelloWorldWeb.ConnCase, async: true
# Bring render/3 and render_to_string/3 for testing custom views
import Phoenix.View
test "renders 404.html" do
assert render_to_string(HelloWorldWeb.ErrorView, "404.html", []) == "Not Found"
end
test "renders 500.html" do
assert render_to_string(HelloWorldWeb.ErrorView, "500.html", []) == "Internal Server Error"
end
end