Packages
dotenvy_generators
0.9.0
Generators for Elixir apps using Dotenvy for config including variants of the phx_new generators
Current section
Files
Jump to
Current section
Files
templates/phx_test/controllers/error_html_test.exs
defmodule <%= @web_namespace %>.ErrorHTMLTest do
use <%= @web_namespace %>.ConnCase, async: true
# Bring render_to_string/4 for testing custom views
import Phoenix.Template
test "renders 404.html" do
assert render_to_string(<%= @web_namespace %>.ErrorHTML, "404", "html", []) == "Not Found"
end
test "renders 500.html" do
assert render_to_string(<%= @web_namespace %>.ErrorHTML, "500", "html", []) == "Internal Server Error"
end
end