livebook/test/live_book_web/views/error_view_test.exs
2021-01-07 20:56:24 +01:00

14 lines
421 B
Elixir

defmodule LiveBookWeb.ErrorViewTest do
use LiveBookWeb.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(LiveBookWeb.ErrorView, "404.html", []) == "Not Found"
end
test "renders 500.html" do
assert render_to_string(LiveBookWeb.ErrorView, "500.html", []) == "Internal Server Error"
end
end