2017-12-08 09:58:14 +01:00
|
|
|
defmodule EventosWeb.ErrorViewTest do
|
|
|
|
use EventosWeb.ConnCase, async: true
|
|
|
|
|
|
|
|
# Bring render/3 and render_to_string/3 for testing custom views
|
|
|
|
import Phoenix.View
|
|
|
|
|
|
|
|
test "renders 404.html" do
|
2018-07-27 10:45:35 +02:00
|
|
|
assert render_to_string(EventosWeb.ErrorView, "404.html", []) == "Page not found"
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
test "render 500.html" do
|
2018-07-27 10:45:35 +02:00
|
|
|
assert render_to_string(EventosWeb.ErrorView, "500.html", []) == "Internal server error"
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
test "render any other" do
|
2018-07-27 10:45:35 +02:00
|
|
|
assert render_to_string(EventosWeb.ErrorView, "505.html", []) == "Internal server error"
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
end
|