()
| 70 | |
| 71 | @pytest.fixture |
| 72 | def client_metadata(): |
| 73 | return OAuthClientMetadata( |
| 74 | client_name="Test Client", |
| 75 | client_uri=AnyHttpUrl("https://example.com"), |
| 76 | redirect_uris=[AnyUrl("http://localhost:3030/callback")], |
| 77 | scope="read write", |
| 78 | ) |
| 79 | |
| 80 | |
| 81 | @pytest.fixture |
nothing calls this directly
no test coverage detected