mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-24 12:37:58 +01:00
15 lines
425 B
Elixir
15 lines
425 B
Elixir
|
defmodule PhilomenaWeb.ErrorViewTest do
|
||
|
use PhilomenaWeb.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(PhilomenaWeb.ErrorView, "404.html", []) == "Not Found"
|
||
|
end
|
||
|
|
||
|
test "renders 500.html" do
|
||
|
assert render_to_string(PhilomenaWeb.ErrorView, "500.html", []) == "Internal Server Error"
|
||
|
end
|
||
|
end
|