2018-10-11 17:37:39 +02:00
|
|
|
defmodule MobilizonWeb.ErrorViewTest do
|
|
|
|
use MobilizonWeb.ConnCase, async: true
|
2017-12-08 09:58:14 +01:00
|
|
|
|
|
|
|
# Bring render/3 and render_to_string/3 for testing custom views
|
|
|
|
import Phoenix.View
|
|
|
|
|
|
|
|
test "renders 404.html" do
|
2019-09-18 17:32:37 +02:00
|
|
|
assert render_to_string(MobilizonWeb.ErrorView, "404.html", []) =~
|
|
|
|
"We're sorry but mobilizon doesn't work properly without JavaScript enabled. Please enable it to continue."
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
test "render 500.html" do
|
2018-10-11 17:37:39 +02:00
|
|
|
assert render_to_string(MobilizonWeb.ErrorView, "500.html", []) == "Internal server error"
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
test "render any other" do
|
2018-10-11 17:37:39 +02:00
|
|
|
assert render_to_string(MobilizonWeb.ErrorView, "505.html", []) == "Internal server error"
|
2017-12-08 09:58:14 +01:00
|
|
|
end
|
|
|
|
end
|