Create a valid JWT payload for testing
()
| 33 | |
| 34 | @pytest.fixture |
| 35 | def valid_jwt_payload(): |
| 36 | """Create a valid JWT payload for testing""" |
| 37 | return JWTPayload( |
| 38 | exp=_generate_jwt_timestamp(), |
| 39 | aud="authenticated", |
| 40 | project_id="test-project-id", |
| 41 | project_prem_status="premium", |
| 42 | api_key="test-api-key", |
| 43 | ) |
| 44 | |
| 45 | |
| 46 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…