mirror of
https://github.com/arcan1s/ahriman.git
synced 2025-07-14 22:45:47 +00:00
10 lines
198 B
Python
10 lines
198 B
Python
from ahriman.web.schemas import AuthSchema
|
|
|
|
|
|
def test_schema() -> None:
|
|
"""
|
|
must return valid schema
|
|
"""
|
|
schema = AuthSchema()
|
|
assert not schema.validate({"API_SESSION": "key"})
|