Initial Commit

This commit is contained in:
bluepython508
2023-11-01 17:27:15 +00:00
commit 45e4e9f5da
929 changed files with 5425 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
defmodule SsoBsnWeb.ErrorJSONTest do
use SsoBsnWeb.ConnCase, async: true
test "renders 404" do
assert SsoBsnWeb.ErrorJSON.render("404.json", %{}) == %{errors: %{detail: "Not Found"}}
end
test "renders 500" do
assert SsoBsnWeb.ErrorJSON.render("500.json", %{}) ==
%{errors: %{detail: "Internal Server Error"}}
end
end