This repository has been archived on 2022-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
dedibox_prices/test/dedibox_prices_web/views/error_view_test.exs

15 lines
441 B
Elixir

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