mirror of
https://github.com/danbee/chess
synced 2025-03-04 08:39:06 +00:00
24 lines
577 B
Elixir
24 lines
577 B
Elixir
defmodule Chess.ErrorViewTest do
|
|
use ChessWeb.ConnCase, async: true
|
|
|
|
# Bring render/3 and render_to_string/3 for testing custom views
|
|
import Phoenix.View
|
|
|
|
alias ChessWeb.ErrorView
|
|
|
|
test "renders 404.html" do
|
|
assert render_to_string(ErrorView, "404.html", []) ==
|
|
"Page not found"
|
|
end
|
|
|
|
test "render 500.html" do
|
|
assert render_to_string(ErrorView, "500.html", []) ==
|
|
"Internal server error"
|
|
end
|
|
|
|
test "render any other" do
|
|
assert render_to_string(ErrorView, "505.html", []) ==
|
|
"Internal server error"
|
|
end
|
|
end
|