This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
graphql-lightning-talk/test/faces_web/views/error_view_test.exs

17 lines
431 B
Elixir
Raw Normal View History

2018-04-08 09:20:53 +12:00
defmodule FacesWeb.ErrorViewTest do
use FacesWeb.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(FacesWeb.ErrorView, "404.html", []) ==
"Not Found"
end
test "renders 500.html" do
assert render_to_string(FacesWeb.ErrorView, "500.html", []) ==
"Internal Server Error"
end
end