| Conditions | 1 |
| Total Lines | 10 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | """Unit test fixtures.""" |
||
| 33 | @pytest.fixture |
||
| 34 | def minimal_openapi_spec_dict(): |
||
| 35 | """Sample minimal openapi spec.""" |
||
| 36 | return { |
||
| 37 | "openapi": "3.0.0", |
||
| 38 | "info": {"title": "Minimal OpenAPI specification", "version": "0.1"}, |
||
| 39 | "paths": { |
||
| 40 | "/status": { |
||
| 41 | "get": { |
||
| 42 | "responses": {"default": {"description": "status"}} |
||
| 43 | } |
||
| 47 |