techprotrade's picture
Deploy ATOM FastAPI command center runtime (part 8)
aef804e verified
Raw
History Blame Contribute Delete
444 Bytes
"""
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",
]