mirror of
https://github.com/rjNemo/elixir_todo
synced 2026-06-06 02:16:40 +00:00
14 lines
405 B
Elixir
14 lines
405 B
Elixir
defmodule TodoWeb.ErrorViewTest do
|
|
use TodoWeb.ConnCase, async: true
|
|
|
|
# Bring render/3 and render_to_string/3 for testing custom views
|
|
import Phoenix.View
|
|
|
|
test "renders 404.html" do
|
|
assert render_to_string(TodoWeb.ErrorView, "404.html", []) == "Not Found"
|
|
end
|
|
|
|
test "renders 500.html" do
|
|
assert render_to_string(TodoWeb.ErrorView, "500.html", []) == "Internal Server Error"
|
|
end
|
|
end
|