blob: 32ef6902391220cd80de96e236b88aad7507a438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
defmodule AggieditWeb.ErrorViewTest do
use AggieditWeb.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(AggieditWeb.ErrorView, "404.html", []) == "Not Found"
end
test "renders 500.html" do
assert render_to_string(AggieditWeb.ErrorView, "500.html", []) == "Internal Server Error"
end
end
|