bump_server/test/bump_web/views/error_view_test.exs
raphael 4e607a7e45 adds phoenix boilerplate and database api
- message communication added
- database migration added
- initial commit
2021-12-05 00:36:13 +01:00

15 lines
405 B
Elixir

defmodule BumpWeb.ErrorViewTest do
use BumpWeb.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(BumpWeb.ErrorView, "404.html", []) == "Not Found"
end
test "renders 500.html" do
assert render_to_string(BumpWeb.ErrorView, "500.html", []) == "Internal Server Error"
end
end