Packages
phx_new_hotwire
1.8.0-rc.3
Phoenix framework project generator. Provides a `mix phx.new` task to bootstrap a new Elixir application with Phoenix and Hotwire dependencies.
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, only: [render_to_string: 4]
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