File size: 431 Bytes
3f219b5 d77a9fd f348ef0 d77a9fd 3f219b5 bf3825c d77a9fd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | defmodule MedicodeWeb.ErrorHTMLTest do
use MedicodeWeb.ConnCase, async: true
# Bring render_to_string/4 for testing custom views
import Phoenix.Template
test "renders 404.html" do
assert render_to_string(MedicodeWeb.ErrorHTML, "404", "html", []) =~ "Not Found"
end
test "renders 500.html" do
assert render_to_string(MedicodeWeb.ErrorHTML, "500", "html", []) ==
"Internal Server Error"
end
end
|