init here

This commit is contained in:
2025-11-26 21:32:41 +03:00
commit 33c97acade
91 changed files with 9155 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
TEST_NAME = "users:login failure"
def run(context) -> None:
payload = {
context.K_USERNAME: context.teacher_username,
context.K_PASSWORD: "WrongPass",
}
status, _, _ = context.send_request(
"POST",
"/api/users/login",
body=payload,
)
context.expect(status == 401, f"expected 401, got {status}")