2021-03-05 19:23:32 -05:00
|
|
|
defmodule Shift73kWeb.ErrorViewTest do
|
|
|
|
use Shift73kWeb.ConnCase, async: true
|
2021-02-24 07:49:39 -05:00
|
|
|
|
|
|
|
# Bring render/3 and render_to_string/3 for testing custom views
|
|
|
|
import Phoenix.View
|
|
|
|
|
|
|
|
test "renders 404.html" do
|
2021-03-05 19:23:32 -05:00
|
|
|
assert render_to_string(Shift73kWeb.ErrorView, "404.html", []) == "Not Found"
|
2021-02-24 07:49:39 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
test "renders 500.html" do
|
2021-03-05 19:23:32 -05:00
|
|
|
assert render_to_string(Shift73kWeb.ErrorView, "500.html", []) == "Internal Server Error"
|
2021-02-24 07:49:39 -05:00
|
|
|
end
|
|
|
|
end
|