medicode / test /medicode_web /controllers /error_json_test.exs
timgremore's picture
fix: Rename directories and main context files
6488653
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