mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-24 07:39:41 +02:00
* fix #1144 * fix type checks * refactor test routes package * fix #1208 * unify test routes into module
This commit is contained in:
parent
07f6446526
commit
68f7efc177
23 changed files with 189 additions and 148 deletions
17
tests/utils/routes/_base.py
Normal file
17
tests/utils/routes/_base.py
Normal file
|
@ -0,0 +1,17 @@
|
|||
from pydantic import UUID4
|
||||
|
||||
|
||||
def v1(route: str) -> str:
|
||||
return f"/api{route}"
|
||||
|
||||
|
||||
class RoutesBase:
|
||||
prefix = "/api"
|
||||
base = f"{prefix}/"
|
||||
|
||||
def __init__(self) -> None:
|
||||
raise NotImplementedError("This class is not meant to be instantiated.")
|
||||
|
||||
@classmethod
|
||||
def item(cls, item_id: int | str | UUID4) -> str:
|
||||
return f"{cls.base}/{item_id}"
|
Loading…
Add table
Add a link
Reference in a new issue