starting repo

This commit is contained in:
2026-03-16 11:58:37 -06:00
commit 24d9c0ce0f
48 changed files with 4271 additions and 0 deletions

View File

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