2021-03-11 21:12:55 -05:00
|
|
|
defmodule LokalWeb.ErrorViewTest do
|
2022-02-25 21:53:15 -05:00
|
|
|
@moduledoc """
|
|
|
|
Tests the error view
|
|
|
|
"""
|
|
|
|
|
2021-03-11 21:12:55 -05:00
|
|
|
use LokalWeb.ConnCase, async: true
|
2022-02-25 21:53:15 -05:00
|
|
|
import LokalWeb.Gettext
|
|
|
|
|
|
|
|
@moduletag :error_view_test
|
2021-03-11 21:12:55 -05:00
|
|
|
|
|
|
|
# Bring render/3 and render_to_string/3 for testing custom views
|
|
|
|
import Phoenix.View
|
|
|
|
|
|
|
|
test "renders 404.html" do
|
2022-02-25 21:53:15 -05:00
|
|
|
assert render_to_string(LokalWeb.ErrorView, "404.html", []) =~
|
|
|
|
dgettext("errors", "Not found")
|
2021-03-11 21:12:55 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test "renders 500.html" do
|
2022-02-25 21:53:15 -05:00
|
|
|
assert render_to_string(LokalWeb.ErrorView, "500.html", []) =~
|
|
|
|
dgettext("errors", "Internal Server Error")
|
2021-03-11 21:12:55 -05:00
|
|
|
end
|
|
|
|
end
|