about summary refs log tree commit diff
path: root/test/guard_web/views/error_view_test.exs
blob: 6ec5f1cadc068bef3f5407df9bbb3b2c4e7ba2b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
defmodule RookWeb.ErrorViewTest do
  use RookWeb.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(RookWeb.ErrorView, "404.html", []) == "Not Found"
  end

  test "renders 500.html" do
    assert render_to_string(RookWeb.ErrorView, "500.html", []) == "Internal Server Error"
  end
end