Spaces:
Sleeping
Sleeping
File size: 444 Bytes
aef804e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | """
Mobile API test fixtures.
This package provides API-first authentication fixtures for mobile API testing.
Fixtures use FastAPI TestClient for in-memory API testing (no server startup needed).
"""
from .mobile_fixtures import (
mobile_api_client,
mobile_auth_token,
mobile_auth_headers,
mobile_test_user,
)
__all__ = [
"mobile_api_client",
"mobile_auth_token",
"mobile_auth_headers",
"mobile_test_user",
]
|