You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
409 B
14 lines
409 B
defmodule ChirpWeb.ErrorViewTest do |
|
use ChirpWeb.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(ChirpWeb.ErrorView, "404.html", []) == "Not Found" |
|
end |
|
|
|
test "renders 500.html" do |
|
assert render_to_string(ChirpWeb.ErrorView, "500.html", []) == "Internal Server Error" |
|
end |
|
end
|
|
|