noahsettersten's picture
chore: Format test files
bf3825c
raw
history blame
432 Bytes
defmodule MedicalTranscriptionWeb.ErrorJSONTest do
use MedicalTranscriptionWeb.ConnCase, async: true
test "renders 404" do
assert MedicalTranscriptionWeb.ErrorJSON.render("404.json", %{}) == %{
errors: %{detail: "Not Found"}
}
end
test "renders 500" do
assert MedicalTranscriptionWeb.ErrorJSON.render("500.json", %{}) ==
%{errors: %{detail: "Internal Server Error"}}
end
end