File size: 384 Bytes
3f219b5
 
d77a9fd
 
3f219b5
bf3825c
 
d77a9fd
 
 
3f219b5
d77a9fd
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
defmodule MedicodeWeb.ErrorJSONTest do
  use MedicodeWeb.ConnCase, async: true

  test "renders 404" do
    assert MedicodeWeb.ErrorJSON.render("404.json", %{}) == %{
             errors: %{detail: "Not Found"}
           }
  end

  test "renders 500" do
    assert MedicodeWeb.ErrorJSON.render("500.json", %{}) ==
             %{errors: %{detail: "Internal Server Error"}}
  end
end