geo-therminator/test/geo_therminator_web/views/error_view_test.exs
2021-11-07 11:01:39 +02:00

14 lines
445 B
Elixir

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