Packages

Flowy framework project generator. Provides a `mix flowy.new` task to bootstrap a new Elixir application with Flowy dependencies.

Current section

Files

Jump to
flowy_new templates phx_test controllers error_html_test.exs
Raw

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