mobilizon.chapril.org-mobil.../test/web/views/error_view_test.exs

22 lines
660 B
Elixir
Raw Normal View History

2020-01-26 21:36:50 +01:00
defmodule Mobilizon.Web.ErrorViewTest do
use Mobilizon.Web.ConnCase, async: true
# Bring render/3 and render_to_string/3 for testing custom views
import Phoenix.View
2020-01-28 20:15:59 +01:00
alias Mobilizon.Web.ErrorView
2020-01-26 21:36:50 +01:00
test "renders 404.html" do
2020-01-28 20:15:59 +01:00
assert render_to_string(ErrorView, "404.html", []) =~
2020-01-26 21:36:50 +01:00
"We're sorry but mobilizon doesn't work properly without JavaScript enabled. Please enable it to continue."
end
test "render 500.html" do
2020-01-28 20:15:59 +01:00
assert render_to_string(ErrorView, "500.html", []) == "Internal server error"
2020-01-26 21:36:50 +01:00
end
test "render any other" do
2020-01-28 20:15:59 +01:00
assert render_to_string(ErrorView, "505.html", []) == "Internal server error"
2020-01-26 21:36:50 +01:00
end
end