Signal drop!
Relay (operand.online) is unreachable.
Usually, a dropped signal means an upgrade is happening. Hold on!
Sorry, no connección.
Hang in there while we get back on track
gram: legal
> ./test/nucleus_web/controllers/error_html_test.exs
defmodule NucleusWeb.ErrorHTMLTest do
use NucleusWeb.ConnCase, async: true
# Bring render_to_string/4 for testing custom views
import Phoenix.Template, only: [render_to_string: 4]
test "renders 404.html" do
assert render_to_string(NucleusWeb.ErrorHTML, "404", "html", []) == "Not Found"
end
test "renders 500.html" do
assert render_to_string(NucleusWeb.ErrorHTML, "500", "html", []) == "Internal Server Error"
end
end