aboutsummaryrefslogtreecommitdiff
path: root/shardweb/test/shard_web/views/error_view_test.exs
blob: a174f4831b0a5c1c2e22eb90b70679a6092834d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
defmodule ShardWeb.ErrorViewTest do
  use ShardWeb.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(ShardWeb.ErrorView, "404.html", []) ==
           "Not Found"
  end

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