Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for Anderson (0.03 sec)

  1. tests/test_tutorial/test_security/test_tutorial004.py

    
    def test_token_inactive_user(mod: ModuleType):
        client = TestClient(mod.app)
        alice_user_data = {
            "username": "alice",
            "full_name": "Alice Wonderson",
            "email": "******@****.***",
            "hashed_password": mod.get_password_hash("secretalice"),
            "disabled": True,
        }
        with patch.dict(f"{mod.__name__}.fake_users_db", {"alice": alice_user_data}):
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 13.3K bytes
    - Viewed (0)
Back to top