mirror of
https://github.com/arcan1s/ahriman.git
synced 2026-02-24 21:59:48 +00:00
10 lines
194 B
Python
10 lines
194 B
Python
from ahriman.web.schemas import AuthSchema
|
|
|
|
|
|
def test_schema() -> None:
|
|
"""
|
|
must return valid schema
|
|
"""
|
|
schema = AuthSchema()
|
|
assert not schema.validate({"AHRIMAN": "key"})
|